Newer
Older
pixi.js / bundles / pixi.js / test / index.js
@Matt Karl Matt Karl on 12 Nov 2017 575 bytes Removes PIXI.ticker Namespace (v5) (#4413)
/* eslint-disable global-require */
const PIXI = global.PIXI = require('../');

describe('PIXI', function ()
{
    it('should exist as a global object', function ()
    {
        expect(PIXI).to.not.be.undefined;
        expect(PIXI.interaction).to.not.be.undefined;
        expect(PIXI.settings).to.not.be.undefined;
        expect(PIXI.loaders).to.not.be.undefined;
        expect(PIXI.extract).to.not.be.undefined;
        expect(PIXI.mesh).to.not.be.undefined;
        expect(PIXI.prepare).to.not.be.undefined;
        expect(PIXI.utils).to.not.be.undefined;
    });
});