File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments