Skip to content

Commit

Permalink
fix(watch): cancel using h key (#3618)
Browse files Browse the repository at this point in the history
  • Loading branch information
AriPerkkio committed Jun 20, 2023
1 parent 73dd4ab commit 60c36fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vitest/src/node/stdin.ts
Expand Up @@ -13,7 +13,7 @@ const keys = [
['t', 'filter by a test name regex pattern'],
['q', 'quit'],
]
const cancelKeys = ['space', 'c', ...keys.map(key => key[0]).flat()]
const cancelKeys = ['space', 'c', 'h', ...keys.map(key => key[0]).flat()]

export function printShortcutsHelp() {
stdout().write(
Expand Down

0 comments on commit 60c36fa

Please sign in to comment.