/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
integration/platform-server-zoneless/e2e/src/transferstate-spec.ts
34 строки
1 KB
Alan Agius
test: add integration test for platform-server with zoneless (#61040)
30 апр 2025, 22:37
30 апр 2025, 22:37
d94fb76
Код
Авторство
О чём код?
/** * @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.dev/license */ import {browser, by, element} from 'protractor'; import {bootstrapClientApp, navigateTo, verifyNoBrowserErrors} from './util'; describe('TransferState', () => { beforeEach(async () => { // Don't wait for Angular since it is not bootstrapped automatically. await browser.waitForAngularEnabled(false); // Load the page without waiting for Angular since it is not bootstrapped automatically. await navigateTo('transferstate'); }); afterEach(async () => { // Make sure there were no client side errors. await verifyNoBrowserErrors(); }); it('should transfer component state', async () => { // Test the contents from the server. expect(await element(by.css('div')).getText()).toEqual('5'); // Bootstrap the client side app and retest the contents await bootstrapClientApp(); expect(await element(by.css('div')).getText()).toEqual('50'); }); });