mirror of
https://github.com/wassname/cardsforscience.git
synced 2026-06-27 21:21:27 +08:00
28 lines
606 B
JavaScript
28 lines
606 B
JavaScript
'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();
|
|
}));
|
|
});
|
|
|
|
});
|