Newer
Older
pixi.js / test / core / Plane.js
@Aaron Brewer Aaron Brewer on 9 Nov 2016 793 bytes adding tests, fixing texture loading. (#3256)
'use strict';

describe('PIXI.mesh.Plane', function ()
{
    it('should create a plane from an external image', function (done)
    {
        PIXI.loader.add('testBitmap', `file://${__dirname}/../renders/tests/assets/bitmap-1.png`)
            .load(function (loader, resources)
            {
                const plane = new PIXI.mesh.Plane(resources.testBitmap.texture, 100, 100);

                expect(plane.verticesX).to.equal(100);
                expect(plane.verticesY).to.equal(100);
                done();
            });
    });

    it('should create a new empty textured Plane', function ()
    {
        const plane = new PIXI.mesh.Plane(PIXI.Texture.EMPTY, 100, 100);

        expect(plane.verticesX).to.equal(100);
        expect(plane.verticesY).to.equal(100);
    });
});