Skip to content

Commit 0729997

Browse files
committed
Rename lib/babel.js to lib/test-worker.js
1 parent 8346d35 commit 0729997

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
@@ -9,7 +9,7 @@ var send = require('./send');
99
module.exports = function (file, opts) {
1010
opts = objectAssign({file: file}, opts);
1111

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

0 commit comments

Comments
 (0)