Skip to content

Commit

Permalink
fix: excludes "@cli" features on win platform
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-zakharchenko committed Jul 10, 2019
1 parent 3db2db6 commit 54d3f12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/cucumber.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const isWindows = process.platform.match(/^win/);
// Excludes Cucumber features marked with the "@cli" tag.
// CLI does not work on Windows:
// https://github.com/apiaryio/gavel-spec/issues/24
const tags = [isWindows && '~@cli'].filter(Boolean);
const tags = [isWindows && '-t ~@cli'].filter(Boolean);

const args = [
...tags,
Expand Down

0 comments on commit 54d3f12

Please sign in to comment.