9 lines
215 B
JavaScript
9 lines
215 B
JavaScript
describe('pixi/loaders/BitmapFontLoader', function () {
|
|
'use strict';
|
|
|
|
var expect = chai.expect;
|
|
|
|
it('Module exists', function () {
|
|
expect(PIXI.BitmapFontLoader).to.be.a('function');
|
|
});
|
|
});
|