Create a mock ParamMap that simulates route parameters, then create a mock ActivatedRoute that returns the mock ParamMap as an Observable.
Using this approach you can test both the initial route parameter binding and parameter changes (by calling next with a new ParamMap on paramMapSubject and then calling fixture.detectChanges())
const paramMapSubject = new Subject<ParamMap>();
const createParamMap = (id: string): ParamMap => ({
get: (param: string) => param === 'id' ? id : null,
getAll: (param: string) => param === 'id' ? [id] : [],
has: (param: string) => param === 'id',
keys: ['id']
});
async function setup() {
return render(ExampleComponent, {
providers: [
{
provide: ActivatedRoute,
useValue: {
paramMap: paramMapSubject.asObservable()
}
}
]
});
}