Added some tests

This commit is contained in:
2016-02-24 17:12:08 +08:00
parent b3a4e8ca4f
commit a82d04af1a
21 changed files with 926 additions and 339 deletions
+27
View File
@@ -0,0 +1,27 @@
'use strict';
describe('services', function () {
//load modules
beforeEach(module('scienceAlchemy'));
// Test service availability
describe('game', function () {
it('should exist', inject(function (game) {
expect(game).toBeDefined();
}));
});
describe('detector', function () {
it('should exist', inject(function (detector) {
expect(detector).toBeDefined();
}));
});
describe('lab', function () {
it('should exist', inject(function (lab) {
expect(lab).toBeDefined();
}));
});
});