diff --git a/src/utils/strings.test.ts b/src/utils/strings.test.ts index 4c6a79a1..6541f9f5 100644 --- a/src/utils/strings.test.ts +++ b/src/utils/strings.test.ts @@ -11,7 +11,7 @@ describe(toUpperSnakeCase.name, () => { expect(result).toEqual('HELLO_WORLD_4'); }); - test('trims leading and trailing whtestespaces', () => { + test('trims leading and trailing whitespaces', () => { const result = toUpperSnakeCase(' hello world '); expect(result).toEqual('HELLO_WORLD'); });