fix: correct typo in variable name (#63)

This commit is contained in:
Xiaomin Liu
2023-12-05 20:37:43 -08:00
committed by GitHub
parent 58b7709515
commit 722ba9b06c
+2 -2
View File
@@ -24,8 +24,8 @@ describe(`parseCommand`, () => {
testData.forEach(({ command, name, skip }) => {
if (skip) return;
test(name, async () => {
const suggetions = await getSuggestions(command);
expect(suggetions).toMatchSnapshot();
const suggestions = await getSuggestions(command);
expect(suggestions).toMatchSnapshot();
});
});
});