build: run playground e2e examples with bazel (#28697)

PR Close #28697
This commit is contained in:
Paul Gschwendtner
2019-02-01 14:46:38 +01:00
committed by Miško Hevery
parent 866f4be782
commit c1c68889de
42 changed files with 265 additions and 32 deletions

View File

@ -6,9 +6,10 @@
* found in the LICENSE file at https://angular.io/license
*/
import {verifyNoBrowserErrors} from 'e2e_util/e2e_util';
import {$, ExpectedConditions, browser, by, element} from 'protractor';
import {verifyNoBrowserErrors} from '../../../e2e_util/e2e_util';
function waitForElement(selector: string) {
// Waits for the element with id 'abc' to be present on the dom.
browser.wait(ExpectedConditions.presenceOf($(selector)), 20000);
@ -19,7 +20,7 @@ describe('routing inbox-app', () => {
afterEach(verifyNoBrowserErrors);
describe('index view', () => {
const URL = 'all/playground/src/routing/';
const URL = '/';
it('should list out the current collection of items', () => {
browser.get(URL);