bpms_site/.svn/pristine/6f/6f13c8238e770afaa9c8197a4ad2b15567c21a2f.svn-base
2025-11-02 16:38:49 +03:30

17 lines
536 B
Plaintext

var should = require('should');
var camel2hyphen = require('../camel2hyphen');
describe('camel2hyphen', function () {
it('should convert minWith to min-width', function () {
camel2hyphen('minWidth').should.equal('min-width');
});
it('should convert deviceMinWith to device-min-width', function () {
camel2hyphen('deviceMinWidth').should.equal('device-min-width');
});
it('should convert MozTransition to -moz-transition', function () {
camel2hyphen('MozTransition').should.equal('-moz-transition');
});
});