()
| 895 | @Component({template: ''}) |
| 896 | class Aborting { |
| 897 | constructor() { |
| 898 | inject(Router).getCurrentNavigation()!.abort(); |
| 899 | } |
| 900 | } |
| 901 | const router = setup([{path: '**', component: Aborting}]); |
| 902 | const events = [] as Event[]; |
nothing calls this directly
no test coverage detected