1
0
Fork 0
mirror of https://github.com/mmumshad/ansible-playable.git synced 2025-02-15 04:42:05 +00:00
ansible-playable/client/app/services/system/system.service.spec.js

17 lines
325 B
JavaScript
Raw Normal View History

'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;
});
});