Skip to content

Commit

Permalink
fix: failing test (angular#1281)
Browse files Browse the repository at this point in the history
Fixes a few tests that were failing after the standalone switch.
  • Loading branch information
crisbeto authored Oct 24, 2024
1 parent e4a78ed commit 0cc5af9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/shared/navigation-focus/navigation-focus.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,14 +128,16 @@ describe('Navigation focus service', () => {
<button id="target1">Target 1</button>
<button id="target2">Target 2</button>
<button class="no-id" focusOnNavigation>Target 3</button>
`
`,
standalone: false,
})
class NavigationFocusTest {
}

@Component({
selector: 'route-test',
template: '',
standalone: false,
})
class RouteTest {
}

0 comments on commit 0cc5af9

Please sign in to comment.