Skip to content

Commit 5b8be0e

Browse files
committed
test: fix typos
1 parent 59fb845 commit 5b8be0e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/merge.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ describe('merge Function', () => {
99
expect(merge(':', 'red', 'green', 'blue')).toBe('red:green:blue')
1010
})
1111

12-
test('Should merge strings with a space when boolean (true) as separator ', () => {
12+
test('Should merge strings with a space when boolean (true) as separator', () => {
1313
expect(merge(true, 'one', 'two', 'three')).toBe('one two three')
1414
})
1515

@@ -29,11 +29,11 @@ describe('merge Function', () => {
2929
expect(merge(false)).toBe('')
3030
})
3131

32-
test('Should return string with whitespace for no input ', () => {
32+
test('Should return string with whitespace for no input', () => {
3333
expect(merge(true)).toBe(' ')
3434
})
3535

36-
test('Should return seperator string for no input ', () => {
36+
test('Should return separator string for no input', () => {
3737
expect(merge('-x-')).toBe('-x-')
3838
})
3939

0 commit comments

Comments
 (0)