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

19 lines
353 B
JavaScript
Executable File

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