Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var send = require('./lib/send');
var log = require('./lib/logger');

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

var opts = JSON.parse(process.argv[2]);
var runner = new Runner(opts);
Expand Down
2 changes: 1 addition & 1 deletion lib/fork.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var send = require('./send');
module.exports = function (file, opts) {
opts = objectAssign({file: file}, opts);

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