Skip to content

Commit

Permalink
fix circus test
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Aug 20, 2019
1 parent 562b381 commit 088ed56
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion e2e/__tests__/testRetries.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ describe('Test Retries', () => {
it('retries failed tests', () => {
const result = runJest('test-retries', ['e2e.test.js']);

expect(result.code).toEqual(0);
expect(result.status).toEqual(0);
expect(result.failed).toBe(false);
});

Expand Down
1 change: 0 additions & 1 deletion e2e/runJest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ function spawnJest(

interface RunJestResult extends ExecaReturnValue {
status?: number;
code?: number;
json?: (
dir: string,
args: Array<string> | undefined,
Expand Down

0 comments on commit 088ed56

Please sign in to comment.