Skip to content

Commit e4b1c52

Browse files
committed
chore: missed test case
1 parent b6c7d9d commit e4b1c52

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/lib/hooks/useCommandSuggestions.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,11 @@ describe('useCommandSuggestions', () => {
8080
test.each([
8181
['hlp', 'help'],
8282
['kv', 'kvs (alias for key-value-stores)', 'cv (alias for upgrade)'],
83+
['key-value-stor', 'key-value-stores'],
8384
// assert order based on distance
8485
['kvs get-values', 'kvs get-value', 'kvs set-value'],
8586
['kvs set-values', 'kvs set-value', 'kvs get-value'],
86-
])('should return the correct command suggestions for %s', (input, ...expected) => {
87+
])('command suggestions for %s', (input, ...expected) => {
8788
const suggestions = useCommandSuggestions(input);
8889

8990
expect(suggestions).toEqual(expected);

0 commit comments

Comments
 (0)