Files
dss.web/client/app/services/audio/audio.service.spec.js
Fergal Moran d2c529bafe Screw you git!
2015-12-01 19:50:20 +00:00

19 lines
317 B
JavaScript
Executable File

'use strict';
describe('Service: audio', function () {
// load the service's module
beforeEach(module('dssWebApp'));
// instantiate service
var audio;
beforeEach(inject(function (_audio_) {
audio = _audio_;
}));
it('should do something', function () {
expect(!!audio).toBe(true);
});
});