angular/modules/playground/e2e_test/http/http_spec.ts
Joey Perrott 81e4257761 build: remove dev-infra directory and migrate to relying on @angular/dev-infra-private-builds (#43061)
Remove the dev-infra directory and complete the migration to using the code generated by the
angular/dev-infra repository.

PR Close #43061
2021-08-16 10:44:27 -07:00

28 lines
851 B
TypeScript

/**
* @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
*/
import {verifyNoBrowserErrors} from '@angular/dev-infra-private/bazel/benchmark/driver-utilities';
import {browser} from 'protractor';
describe('http', function() {
afterEach(verifyNoBrowserErrors);
describe('fetching', function() {
const URL = '/';
it('should fetch and display people', function() {
browser.get(URL);
expect(getComponentText('http-app', '.people')).toEqual('hello, Jeff');
});
});
});
function getComponentText(selector: string, innerSelector: string) {
return browser.executeScript(`return document.querySelector("${selector}").querySelector("${
innerSelector}").textContent.trim()`);
}