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

Commit e93405d

Browse files
committed
fixup! feat(*): implement more granular pending task tracking
1 parent 8dfd9d9 commit e93405d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/ngMock/angular-mocksSpec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ describe('ngMock', function() {
796796
callback = jasmine.createSpy('callback');
797797
});
798798

799-
it('should immediatelly run the callback if no pending tasks', function() {
799+
it('should immediately run the callback if no pending tasks', function() {
800800
browser.notifyWhenNoOutstandingRequests(callback);
801801
expect(callback).toHaveBeenCalled();
802802
});
@@ -829,7 +829,7 @@ describe('ngMock', function() {
829829
});
830830

831831
describe('with specific task type', function() {
832-
it('should immediatelly run the callback if no pending tasks', function() {
832+
it('should immediately run the callback if no pending tasks', function() {
833833
browser.notifyWhenNoOutstandingRequests(callback, 'fooType');
834834
expect(callback).toHaveBeenCalled();
835835
});

0 commit comments

Comments
 (0)