-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(cdk/testing): port the protractor tests to the webdriver env (#2…
- Loading branch information
Showing
8 changed files
with
230 additions
and
64 deletions.
There are no files selected for viewing
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
This file was deleted.
Oops, something went wrong.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/** | ||
* @license | ||
* Copyright Google LLC All Rights Reserved. | ||
* | ||
* Use of this source code is governed by an MIT-style license that can be | ||
* found in the LICENSE file at https://angular.io/license | ||
*/ | ||
|
||
/** | ||
* An Angular framework stabilizer function that takes a callback and calls it when the application | ||
* is stable, passing a boolean indicating if any work was done. | ||
*/ | ||
declare interface FrameworkStabilizer { | ||
(callback: (didWork: boolean) => void): void; | ||
} | ||
|
||
/** | ||
* These hooks are exposed by Angular to register a callback for when the application is stable (no | ||
* more pending tasks). | ||
* | ||
* For the implementation, see: | ||
* https://github.com/angular/angular/blob/master/packages/platform-browser/src/browser/testability.ts#L30-L49 | ||
*/ | ||
declare const frameworkStabilizers: FrameworkStabilizer[]; |
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
Oops, something went wrong.