mirror of
https://github.com/fergalmoran/dss.web.git
synced 2026-02-16 13:11:33 +00:00
19 lines
353 B
JavaScript
19 lines
353 B
JavaScript
'use strict';
|
|
|
|
describe('Service: imageupload', function () {
|
|
|
|
// load the service's module
|
|
beforeEach(module('dssWebApp'));
|
|
|
|
// instantiate service
|
|
var imageupload;
|
|
beforeEach(inject(function (_imageupload_) {
|
|
imageupload = _imageupload_;
|
|
}));
|
|
|
|
it('should do something', function () {
|
|
expect(!!imageupload).toBe(true);
|
|
});
|
|
|
|
});
|