multimediaobject
Version:
Multimediaobject library
12 lines (11 loc) • 497 B
JavaScript
describe('utils.toDashed', () => {
it('should return background-color for input backgroundColor', () => {
expect(utils.toDashed('backgroundColor')).toEqual('background-color');
});
it('should return background-color-plus for input backgroundColorPlus', () => {
expect(utils.toDashed('backgroundColorPlus')).toEqual('background-color-plus');
});
it('should return background for input background', () => {
expect(utils.toDashed('background')).toEqual('background');
});
});