We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c7ba7e commit 95c0e5fCopy full SHA for 95c0e5f
1 file changed
packages/jest-cli/src/watch.js
@@ -161,6 +161,7 @@ export default function watch(
161
let activePlugin: ?WatchPlugin;
162
const onKeypress = (key: string) => {
163
if (key === KEYS.CONTROL_C || key === KEYS.CONTROL_D) {
164
+ outputStream.write('\n');
165
process.exit(0);
166
return;
167
}
@@ -204,6 +205,7 @@ export default function watch(
204
205
206
switch (key) {
207
case KEYS.Q:
208
209
210
211
case KEYS.ENTER:
0 commit comments