diff --git a/src/tests/runtime/runtime.test.ts b/src/tests/runtime/runtime.test.ts index 87744e0..71b8a2c 100644 --- a/src/tests/runtime/runtime.test.ts +++ b/src/tests/runtime/runtime.test.ts @@ -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(); }); }); });