mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-04-01 20:40:03 +08:00
this is to enable nicer tests:
describe('fooSvc', function() {
var fooSvc;
beforeEach(inject(function(_fooSvc_) {
fooSvc = _fooSvc_;
}));
it('should do this thing', function() {
//test fooSvc
});
});