Last active
August 29, 2015 14:16
-
-
Save jamestalmage/a86a54a8810a6d282086 to your computer and use it in GitHub Desktop.
Annotation Idea
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
describe('myModule', function(){ | |
beforeEach(module('myModule')); | |
/* @ngInject */ | |
var a, b; | |
it('does things', function() { | |
// .... | |
}); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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