angular/modules/benchmarks/src/tree/tree.e2e-spec.ts
Kristiyan Kostadinov d9c980a958 build: initial test of TypeScript 6
Resolves some initial test failures after updating to TypeScript 6.
2026-01-15 13:41:01 -08:00

28 lines
777 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.dev/license
*/
import {$} from 'protractor';
import {openTreeBenchmark} from './test_utils.js';
describe('tree benchmark', () => {
it('should work for createDestroy', async () => {
openTreeBenchmark();
await $('#createDom').click();
expect($('#root').getText()).toContain('1');
await $('#destroyDom').click();
expect(await $('#root').getText()).toEqual('');
});
it('should work for update', async () => {
openTreeBenchmark();
await $('#createDom').click();
await $('#createDom').click();
expect($('#root').getText()).toContain('A');
});
});