Skip to content

Commit

Permalink
Disable babel-cli tests on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed Sep 9, 2019
1 parent 43f6795 commit 7adb6dc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/babel-cli/test/index.js
Expand Up @@ -205,7 +205,9 @@ fs.readdirSync(fixtureLoc).forEach(function(binName) {
opts.inFiles[".babelrc"] = helper.readFile(babelrcLoc);
}

it(testName, buildTest(binName, testName, opts));
const testFn = process.platform === "win32" ? it.skip : it;

testFn(testName, buildTest(binName, testName, opts));
});
});
});

0 comments on commit 7adb6dc

Please sign in to comment.