Skip to content

Commit efb50e8

Browse files
committed
async is actually not needed here
1 parent 93f386d commit efb50e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/createJestRunner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const createRunner = runPath => {
2525
const mutex = throat(this._globalConfig.maxWorkers);
2626

2727
const runTestInWorker = test =>
28-
mutex(async () => {
28+
mutex(() => {
2929
if (watcher.isInterrupted()) {
3030
throw new CancelRun();
3131
}

0 commit comments

Comments
 (0)