Skip to content

Commit b0e508a

Browse files
committed
Merge pull request #375 from ariporad/rename-babel.js
Rename lib/babel.js to lib/test-worker.js
2 parents 7e13552 + 0729997 commit b0e508a

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var send = require('./lib/send');
88
var log = require('./lib/logger');
99

1010
// note that test files have require('ava')
11-
require('./lib/babel').avaRequired = true;
11+
require('./lib/test-worker').avaRequired = true;
1212

1313
var opts = JSON.parse(process.argv[2]);
1414
var runner = new Runner(opts);

lib/fork.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var send = require('./send');
1010
module.exports = function (file, opts) {
1111
opts = objectAssign({file: file}, opts);
1212

13-
var ps = childProcess.fork(path.join(__dirname, 'babel.js'), [JSON.stringify(opts)], {
13+
var ps = childProcess.fork(path.join(__dirname, 'test-worker.js'), [JSON.stringify(opts)], {
1414
cwd: path.dirname(file),
1515
stdio: ['ignore', process.stderr, process.stderr]
1616
});
File renamed without changes.

0 commit comments

Comments
 (0)