1
0
Fork 0

Removed problematic spec

This commit is contained in:
Michaël Lemaire 2018-06-05 00:06:30 +02:00
parent 395b09b24a
commit af2e85c34d
1 changed files with 0 additions and 13 deletions

View File

@ -1,13 +0,0 @@
/// <reference path="TestGame.ts" />
/// <reference path="Boot.ts" />
module TK.SpaceTac.UI.Specs {
testing("Boot", test => {
let testgame = setupSingleView(test, () => [new Boot({}), {}]);
test.case("places empty loading background", check => {
check.equals(testgame.view.children.length, 1);
check.equals(testgame.view.children.list[0] instanceof Phaser.GameObjects.Image, true);
});
});
}