Started to implement tests

This commit is contained in:
BorisLevitskiy
2015-04-09 17:29:40 +03:00
parent f1f8526269
commit 65bf36141e
3 changed files with 27 additions and 1 deletions

8
tests/stubSpec.js Normal file
View File

@@ -0,0 +1,8 @@
describe("App test", function() {
var app = window.app;
it("shouldn't be null", function() {
console.log(app);
expect(app.constructor).notBeNull();
});
});