UNPKG

angular2

Version:

Angular 2 - a web framework for modern web apps

25 lines 1.18 kB
'use strict';var e2e_util_1 = require('angular2/src/testing/e2e_util'); function waitForElement(selector) { var EC = protractor.ExpectedConditions; // Waits for the element with id 'abc' to be present on the dom. browser.wait(EC.presenceOf($(selector)), 20000); } describe('on activate example app', function () { afterEach(e2e_util_1.verifyNoBrowserErrors); var URL = 'angular2/examples/router/ts/on_activate/'; it('should update the text when navigating between routes', function () { browser.get(URL); waitForElement('my-cmp'); expect(element(by.css('my-cmp')).getText()) .toContain('onActivate: Finished navigating from "null" to ""'); element(by.css('#param-link')).click(); waitForElement('my-cmp'); expect(element(by.css('my-cmp')).getText()) .toContain('onActivate: Finished navigating from "" to "1"'); browser.navigate().back(); waitForElement('my-cmp'); expect(element(by.css('my-cmp')).getText()) .toContain('onActivate: Finished navigating from "1" to ""'); }); }); //# sourceMappingURL=on_activate_spec.js.map