Skip to content

Commit 60c36fa

Browse files
authoredJun 20, 2023
fix(watch): cancel using h key (#3618)
1 parent 73dd4ab commit 60c36fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/vitest/src/node/stdin.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const keys = [
1313
['t', 'filter by a test name regex pattern'],
1414
['q', 'quit'],
1515
]
16-
const cancelKeys = ['space', 'c', ...keys.map(key => key[0]).flat()]
16+
const cancelKeys = ['space', 'c', 'h', ...keys.map(key => key[0]).flat()]
1717

1818
export function printShortcutsHelp() {
1919
stdout().write(

0 commit comments

Comments
 (0)
Please sign in to comment.