From 54d3f12bfdefac133eda3d701d1a7391c33ed6a4 Mon Sep 17 00:00:00 2001 From: artem-zakharchenko Date: Wed, 10 Jul 2019 14:45:55 +0200 Subject: [PATCH] fix: excludes "@cli" features on win platform --- scripts/cucumber.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/cucumber.js b/scripts/cucumber.js index b51a6868..c986f967 100644 --- a/scripts/cucumber.js +++ b/scripts/cucumber.js @@ -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,