generator-angular-eggs
Version:
Angular 1.5, Angular Component Router, Bootstrap v4(alpha) and TingoDB(like MongoDB) with an Express server
22 lines (15 loc) • 484 B
JavaScript
(function () {
'use strict';
describe('Service: <%= className %>Service', function() {
var <%= className %>Service, $rootScope;
beforeEach(module('<%= appname %>.service.<%= name %>'));
beforeEach(inject(function (_$rootScope_, _<%= className %>Service_) {
<%= className %>Service = _<%= className %>Service_;
$rootScope = _$rootScope_;
}));
describe('someThing', function() {
it('someThing', function() {
});
});
});
})();