Skip to content

Commit

Permalink
Skip flaky test on Windows w old Node
Browse files Browse the repository at this point in the history
  • Loading branch information
goto-bus-stop committed May 8, 2018
1 parent 3703154 commit 8e7cb87
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/bin_tr_error.js
Expand Up @@ -2,8 +2,12 @@ var browserify = require('../');
var spawn = require('child_process').spawn;
var test = require('tap').test;
var path = require('path')
var semver = require('semver');

test('function transform', function (t) {
// TODO this should be fixable I guess
var flaky = process.platform === 'win32' && semver.satisfies(process.version, 'v0.10.x');

test('function transform', { skip: flaky }, function (t) {
t.plan(3);
var ps = spawn(process.execPath, [
path.resolve(__dirname, '../bin/cmd.js'),
Expand Down

0 comments on commit 8e7cb87

Please sign in to comment.