在Angular 14中,与Angular router.navigate相关的更改可能会影响您的测试。具体而言,这种问题可能由于ngMocks提供的测试平台导致。
为了解决这个问题,您可以尝试用路由导航替换router.navigate来触发导航。下面是一个示例代码片段,展示了如何在测试中使用路由导航:
import { Location } from '@angular/common';
import { RouterTestingModule } from '@angular/router/testing';
import { Router } from '@angular/router';
describe('Component', () => {
let router: Router;
let location: Location;
beforeEach(() => {
TestBed.configureTestingModule({
imports: [RouterTestingModule],
});
router = TestBed.inject(Router);
location = TestBed.inject(Location);
router.initialNavigation();
});
it('should navigate to foo and return', fakeAsync(() => {
router.navigate(['/foo']);
tick();
expect(location.path()).toBe('/foo');
}));
});
在这个例子中,我们首先导入Location、RouterTestingModule和Router。然后,我们定义了router和location变量,并在beforeEach函数中进行初始化。initializeNavigation()函数会触发初始导航。
接下来,在测试中使用路由导航而不是router.navigate方法来触发导航。在这个例子中,我们使用了'/foo'路径进行导航。最后,我们通过location.path()来获取当前导航路径,并执行断言。
通过使用路由导航而不是router.navigate,您可以避免在测试中遇到Angular 14的路由问题。