Skip to content

Commit

Permalink
run cjs test with node for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed Mar 24, 2024
1 parent b62bb6c commit cbea491
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/index.test.js
Expand Up @@ -66,7 +66,7 @@ describe('gulp', function() {

var cli = path.join(__dirname, '../bin/gulp.js');
var opts = { cwd: path.join(__dirname, 'fixtures/gulpfiles/cjs' ) };
cp.exec(cli, opts, function (err, stdout, stderr) {
cp.exec('node ' + cli, opts, function (err, stdout, stderr) {
expect(err).toBeNull();
expect(stdout).toMatch('gulpfile.cjs');
expect(stderr).toEqual('');
Expand Down

0 comments on commit cbea491

Please sign in to comment.