"use strict";
describe('CSSProperty', function() {
var CSSProperty;
beforeEach(function() {
require('mock-modules').dumpCache();
CSSProperty = require('CSSProperty');
});
it('should generate browser prefixes for its `isUnitlessNumber`', function() {
expect(CSSProperty.isUnitlessNumber.lineClamp).toBeTruthy();
expect(CSSProperty.isUnitlessNumber.WebkitLineClamp).toBeTruthy();
expect(CSSProperty.isUnitlessNumber.msFlexGrow).toBeTruthy();
expect(CSSProperty.isUnitlessNumber.MozFlexGrow).toBeTruthy();
});
});