mirror of
https://github.com/wassname/cardsforscience.git
synced 2026-06-27 16:14:52 +08:00
29 lines
651 B
JavaScript
29 lines
651 B
JavaScript
'use strict';
|
|
|
|
describe('services', function () {
|
|
|
|
//load modules
|
|
beforeEach(module('cardsForScience'));
|
|
|
|
|
|
// 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();
|
|
}));
|
|
});
|
|
|
|
});
|