18 lines
475 B
JavaScript
18 lines
475 B
JavaScript
describe('pixi/core/Matrix', function () {
|
|
'use strict';
|
|
|
|
var expect = chai.expect;
|
|
|
|
it('Ensure determineMatrixArrayType exists', function () {
|
|
expect(PIXI.determineMatrixArrayType).to.be.a('function');
|
|
});
|
|
|
|
it('Matrix exists', function () {
|
|
expect(PIXI.Matrix).to.be.an('function');
|
|
});
|
|
|
|
it('Confirm new Matrix', function () {
|
|
var matrix = new PIXI.Matrix();
|
|
pixi_core_Matrix_confirmNewMatrix(matrix);
|
|
});
|
|
});
|