Skip to content
This repository was archived by the owner on Nov 8, 2024. It is now read-only.

Commit 54d3f12

Browse files
fix: excludes "@cli" features on win platform
1 parent 3db2db6 commit 54d3f12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/cucumber.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const isWindows = process.platform.match(/^win/);
66
// Excludes Cucumber features marked with the "@cli" tag.
77
// CLI does not work on Windows:
88
// https://github.com/apiaryio/gavel-spec/issues/24
9-
const tags = [isWindows && '~@cli'].filter(Boolean);
9+
const tags = [isWindows && '-t ~@cli'].filter(Boolean);
1010

1111
const args = [
1212
...tags,

0 commit comments

Comments
 (0)