mirror of
https://github.com/fergalmoran/dss.web.git
synced 2026-02-17 13:35:52 +00:00
19 lines
317 B
JavaScript
Executable File
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);
|
|
});
|
|
|
|
});
|