/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
devtools/cypress/integration/elements.e2e.js
20 строк
486 B
AleksanderBodurri
test(devtools): revive cypress tests (#61972)
11 июл 2025, 20:33
11 июл 2025, 20:33
bf292bd
Код
Авторство
О чём код?
/** * @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 */ describe('Angular Elements', () => { beforeEach(() => { cy.visit('/'); }); it('should recognize the zippy as an Angular Element', () => { cy.get('.tree-wrapper') .find('ng-tree-node:contains("app-zippy")') .its('length') .should('eq', 1); }); });