Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ng-dev] Async test helpers #12

Merged
merged 16 commits into from
Dec 19, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion TODO.md
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
Loading