angular/devtools/cypress
AleksanderBodurri 5be80d33a3 fix(devtools): DOM traversal bug (#62719)
Previously, Angular devtools would mistakenly traverse the same DOM elements multiple times while doing traversal for the component tree explorer. This error case would occur when more than 1 Angular application root component was present on the same page and in distinct DOM branches.

Some example cases that did work previously:

```html
<app-root>
...
</app-root>
```

```html
<app-root>
...
<app-root-2></app-root-2>
...
</app-root>
```

An example of where it would enter the irregular behaviour

```html
<app-root>
...
</app-root>
<app-root-2>
...
</app-root-2>
```

Now, we properly ignore duplicate DOM paths when looking for application and non-application root component to begin the Angular DevTools component discovery logic.

PR Close #62719
2025-08-18 15:43:09 +00:00
..
fixtures refactor(devtools): prepare codebase for migration to angular/angular repo 2021-11-21 20:23:18 -05:00
integration fix(devtools): DOM traversal bug (#62719) 2025-08-18 15:43:09 +00:00
plugins refactor: update license text to point to angular.dev (#57901) 2024-09-24 15:33:00 +02:00
support test(devtools): revive cypress tests (#61972) 2025-07-11 10:33:50 -07:00
cypress.config.js test(devtools): bump cypress timeout to 10 seconds (#62726) 2025-07-21 16:35:39 -04:00
tsconfig.json refactor(devtools): prepare codebase for migration to angular/angular repo 2021-11-21 20:23:18 -05:00