Skip to content

Instantly share code, notes, and snippets.

@jamestalmage
Last active August 29, 2015 14:16
Show Gist options
  • Save jamestalmage/a86a54a8810a6d282086 to your computer and use it in GitHub Desktop.
Save jamestalmage/a86a54a8810a6d282086 to your computer and use it in GitHub Desktop.
Annotation Idea
describe('myModule', function(){
beforeEach(module('myModule'));
/* @ngInject */
var a, b;
it('does things', function() {
// ....
});
});
describe('myModule', function(){
beforeEach(module('myModule'));
/* @ngInject */
var a, b;
beforeEach(function(_a_,_b_){ // injected by ng-test-utils
a = _a_;
b = _b_;
});
it('does things', function() {
// ....
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment