Newer
Older
pixi.js / test / unit / pixi-v2 / utils / Utils.js
@Dr. Kibtiz Dr. Kibtiz on 21 Mar 2015 445 bytes Moved old tests to pixi-v2 dir
describe('Utils', function () {
    'use strict';

    var expect = chai.expect;

    it('requestAnimationFrame exists', function () {
        expect(global).to.respondTo('requestAnimationFrame');
    });

    it('cancelAnimationFrame exists', function () {
        expect(global).to.respondTo('cancelAnimationFrame');
    });

    it('requestAnimFrame exists', function () {
        expect(global).to.respondTo('requestAnimFrame');
    });
});