Skip to content

Commit

Permalink
Skip babel-node 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 8948206 commit 1fa7237
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/babel-node/test/index.js
Expand Up @@ -198,7 +198,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 1fa7237

Please sign in to comment.