Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 91a91b6

Browse files
committed
fix(ngMock): Don't clean up if currentSpec is null.
In unit tests that use Angular and AngularJS, sometimes an error being thrown during the test and cause this afterEach hook to run twice. If that happens, on the second run cleanup will throw an error, since at that point currentSpec is null. This causes the original error to be hidden by a "TypeError: Cannot read property '$injector' of null while testing" error. This makes cleanup safe to call multiple times, working around the issue.
1 parent 33b5c50 commit 91a91b6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/ngMock/angular-mocks.js

+3
Original file line numberDiff line numberDiff line change
@@ -3000,6 +3000,9 @@ angular.mock.$RootScopeDecorator = ['$delegate', function($delegate) {
30003000
};
30013001

30023002
module.$$cleanup = function() {
3003+
if (!currentSpec) {
3004+
return;
3005+
}
30033006
var injector = currentSpec.$injector;
30043007

30053008
annotatedFunctions.forEach(function(fn) {

0 commit comments

Comments
 (0)