admin管理员组文章数量:1344931
I've recently added an Angular "resolver", but now trying to figure out how to write a spec test for it.
Currently, the test script fails on the 2nd test in appponent.ts
with timeout error:
FAIL app-client-web apps/app-client-web/src/app/appponent.spec.ts (20.929 s)
AppComponent
√ should have title 'app-client-web' (170 ms)
× should create RouterOutlet with valid query parameters (5029 ms)
√ should have RotuerOutlet be null with invalid query parameter (320 ms)
● AppComponent › should create RouterOutlet with valid query parameters
thrown: "Exceeded timeout of 5000 ms for a test.
Add a timeout value to this test to increase the timeout,
if this is a long-running test. See ."
A sample of our routes (with resolve: { .. }):
// shell.routes.ts import { Routes } from '@angular/router'; //... (more import here) import { globalConfigResolver } from './resolvers/app-config.resolver'; export const myShellRoutes: Routes = [ { path: 'single', component: MyShellComponent, canActivate: [myRouteGuard], resolve: { appConfig: globalConfigResolver }, }, ];
本文标签: How to test an Angular ResolverStack Overflow
版权声明:本文标题:How to test an Angular Resolver - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743761529a2534466.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论