mirror of
https://github.com/mmumshad/ansible-playable.git
synced 2025-02-15 04:42:05 +00:00
16 lines
325 B
JavaScript
16 lines
325 B
JavaScript
'use strict';
|
|
|
|
describe('Service: system', function() {
|
|
// load the service's module
|
|
beforeEach(module('webAppApp.system'));
|
|
|
|
// instantiate service
|
|
var system;
|
|
beforeEach(inject(function(_system_) {
|
|
system = _system_;
|
|
}));
|
|
|
|
it('should do something', function() {
|
|
expect(!!system).to.be.true;
|
|
});
|
|
});
|