mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
tests for convertToSnakeCase function
This commit is contained in:
parent
dd7673f0ce
commit
3d30ebdeb5
1 changed files with 19 additions and 0 deletions
|
@ -0,0 +1,19 @@
|
|||
const expect = require('expect.js');
|
||||
const convertToSnakeCase = require('../convert_to_snake_case');
|
||||
const _ = require('lodash');
|
||||
|
||||
describe('convertToSnakeCase', function () {
|
||||
|
||||
it('should convert all of an object\'s keys to snake case', function () {
|
||||
const result = convertToSnakeCase({
|
||||
camelCase: 'camel_case',
|
||||
'kebab-case': 'kebab_case',
|
||||
snake_case: 'snake_case'
|
||||
});
|
||||
|
||||
_.forEach(result, function (value, key) {
|
||||
expect(key).to.be(value);
|
||||
});
|
||||
});
|
||||
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue