From 722ba9b06c5af7a9cd9a1e56d02608c2b24d642b Mon Sep 17 00:00:00 2001 From: Xiaomin Liu Date: Tue, 5 Dec 2023 23:37:43 -0500 Subject: [PATCH] fix: correct typo in variable name (#63) --- src/tests/runtime/runtime.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); }); }); });