We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f18ab9c commit 2e3eb32Copy full SHA for 2e3eb32
frontend/src/__tests__/utils/kebab-case.test.ts
@@ -8,6 +8,7 @@ describe('toKebabCase', () => {
8
it('returns empty string for only symbols', () => {
9
expect(toKebabCase('!!!')).toBe('');
10
});
11
+
12
it('converts spaces to hyphens', () => {
13
expect(toKebabCase('this is a test')).toBe('this-is-a-test');
14
0 commit comments