UNPKG

phaser

Version:

A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.

15 lines (12 loc) 335 B
var ArcadeSprite = require('../../../src/physics/arcade/ArcadeSprite'); describe('Sprite', function () { it('should be importable', function () { expect(ArcadeSprite).toBeDefined(); }); it('should be a constructor function', function () { expect(typeof ArcadeSprite).toBe('function'); }); });