remove .only (#5943)

This commit is contained in:
Krist Wongsuphasawat
2018-09-20 10:42:22 -07:00
committed by Maxime Beauchemin
parent 00c4c7ec4b
commit 8c83b72ce2

View File

@@ -2,7 +2,7 @@ import { it, describe } from 'mocha';
import { expect } from 'chai';
import convertKeysToCamelCase from '../../../src/utils/convertKeysToCamelCase';
describe.only('convertKeysToCamelCase(object)', () => {
describe('convertKeysToCamelCase(object)', () => {
it('returns undefined for undefined input', () => {
expect(convertKeysToCamelCase(undefined)).to.equal(undefined);
});