From af2e85c34dcb64bec88350918e043e7076e71529 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Lemaire?= Date: Tue, 5 Jun 2018 00:06:30 +0200 Subject: [PATCH] Removed problematic spec --- src/ui/Boot.spec.ts | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 src/ui/Boot.spec.ts diff --git a/src/ui/Boot.spec.ts b/src/ui/Boot.spec.ts deleted file mode 100644 index 2bb4506..0000000 --- a/src/ui/Boot.spec.ts +++ /dev/null @@ -1,13 +0,0 @@ -/// -/// - -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); - }); - }); -}