Skip to content

Commit 8978fa0

Browse files
committed
conveniently attach sample options (template)
1 parent 9698b17 commit 8978fa0

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

lib/guard/cucumber/templates/Guardfile

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
1-
guard "cucumber" do
1+
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
218
watch(%r{^features/.+\.feature$})
319
watch(%r{^features/support/.+$}) { "features" }
420

0 commit comments

Comments
 (0)