Skip to content

Commit

Permalink
feat(ng-dev): add AsyncMethodController
Browse files Browse the repository at this point in the history
Closes #9
  • Loading branch information
ersimont committed Dec 19, 2020
1 parent 7455155 commit a8eb567
Show file tree
Hide file tree
Showing 9 changed files with 772 additions and 1 deletion.
2 changes: 1 addition & 1 deletion TODO.md
@@ -1,4 +1,4 @@
- landing page to link to all API docs
- coveralls
- help may be here, to combine multiple coverage runs into one report: https://github.com/angular/angular-cli/issues/11268
- see if typedoc can support that "lib" mode that would eliminate the need for @hidden yet
- Watch for when typedoc can support that "lib" mode that would eliminate the need for @hidden
10 changes: 10 additions & 0 deletions projects/integration/src/app/api-tests/ng-dev.spec.ts
@@ -1,6 +1,8 @@
import {
AngularContext,
AsyncMethodController,
ComponentContext,
TestCall,
createSpyObject,
expectCallsAndReset,
expectSingleCallAndReset,
Expand All @@ -15,10 +17,18 @@ describe('ng-dev', () => {
expect(AngularContext).toBeDefined();
});

it('has AsyncMethodController', () => {
expect(AsyncMethodController).toBeDefined();
});

it('has ComponentContext', () => {
expect(ComponentContext).toBeDefined();
});

it('has TestCall', () => {
expect(TestCall).toBeDefined();
});

it('has createSpyObject()', () => {
expect(createSpyObject).toBeDefined();
});
Expand Down

0 comments on commit a8eb567

Please sign in to comment.