Skip to content

Commit

Permalink
test(Utils): Add toCamelCase function test
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaperret committed Aug 9, 2017
1 parent 589f830 commit e4b131c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions test/specs/utils.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import * as utils from 'src/utils'

describe('Utils', () => {
test('Kebab to camel case', () => {
expect(utils.toCamelCase('kebab-case-string')).toBe('kebabCaseString')
})
})

0 comments on commit e4b131c

Please sign in to comment.