We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9698b17 commit 8978fa0Copy full SHA for 8978fa0
lib/guard/cucumber/templates/Guardfile
@@ -1,4 +1,20 @@
1
-guard "cucumber" do
+cucumber_options = {
2
+ # Below are examples overriding defaults
3
+
4
+ # cmd: 'bin/cucumber',
5
+ # cmd_additional_args: '--profile guard',
6
7
+ # all_after_pass: false,
8
+ # all_on_start: false,
9
+ # keep_failed: false,
10
+ # feature_sets: ['features/frontend', 'features/experimental'],
11
12
+ # run_all: { cmd_additional_args: '--profile guard_all' },
13
+ # focus_on: { 'wip' }, # @wip
14
+ # notification: false
15
+}
16
17
+guard "cucumber", cucumber_options do
18
watch(%r{^features/.+\.feature$})
19
watch(%r{^features/support/.+$}) { "features" }
20
0 commit comments