Skip to content

Commit

Permalink
fix testRunner.test
Browse files Browse the repository at this point in the history
  • Loading branch information
jeysal committed Mar 30, 2019
1 parent c2818c2 commit e9ea5f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/jest-runner/src/__tests__/testRunner.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jest.mock('jest-worker', () =>
jest.fn(
worker =>
(mockWorkerFarm = {
end: jest.fn(),
end: jest.fn().mockResolvedValue({forceExited: false}),
getStderr: jest.fn(),
getStdout: jest.fn(),
worker: jest.fn((data, callback) => require(worker)(data, callback)),
Expand Down

0 comments on commit e9ea5f1

Please sign in to comment.