Skip to content

Commit

Permalink
remove exit code
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Jan 27, 2019
1 parent 5264e2a commit 3479ca7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/jest-runner/src/runTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ function freezeConsole(buffer: ConsoleBuffer, config: ProjectConfig) {
);

process.stderr.write(formattedError);
process.exitCode = 1;
// TODO: set exit code in Jest 25
// process.exitCode = 1;
};
}

Expand Down

0 comments on commit 3479ca7

Please sign in to comment.