chicago
Version:
A front-end JavaScript library for user-interface developers.
33 lines (22 loc) • 761 B
JavaScript
;(function(_c) {
describe('Chicago.Support', function() {
describe('#properties', function() {
it('Property `requestAnimationFrame` exists', function() {
_c.support.should.have.property( 'requestAnimationFrame' );
// _c.support.should.have.property( 'random' );
});
it('Property `touch` exists', function() {
_c.support.should.have.property( 'touch' );
});
it('Property `mutationobserver` exists', function() {
_c.support.should.have.property( 'mutationobserver' );
});
it('Property `transition` exists', function() {
_c.support.should.have.property( 'transition' );
});
it('Property `animation` exists', function() {
_c.support.should.have.property( 'animation' );
});
});
});
})(Chicago);