ngmodule
Sets up the router to be used for testing.
class RouterTestingModule { static withRoutes(routes: Routes, config?: ExtraOptions): ModuleWithProviders<RouterTestingModule> }
The modules sets up the router to be used for testing. It provides spy implementations of Location
and LocationStrategy
.
Further information is available in the Usage Notes...
withRoutes() | ||||||
---|---|---|---|---|---|---|
|
routes | Routes | |
config | ExtraOptions | Optional. Default is |
Provider |
---|
ROUTER_PROVIDERS |
EXTRA_ROUTER_TESTING_PROVIDERS |
{ provide: Location, useClass: SpyLocation } |
{ provide: LocationStrategy, useClass: MockLocationStrategy } |
{ provide: Router, useFactory: setupTestingRouterInternal, deps: [ UrlSerializer, ChildrenOutletContexts, Location, Compiler, Injector, ROUTES, TitleStrategy, ROUTER_CONFIGURATION, [UrlHandlingStrategy, new Optional()], [RouteReuseStrategy, new Optional()], ] } |
withPreloading(NoPreloading).ɵproviders |
provideRoutes([]) |
beforeEach(() => { TestBed.configureTestingModule({ imports: [ RouterTestingModule.withRoutes( [{path: '', component: BlankCmp}, {path: 'simple', component: SimpleCmp}] ) ] }); });
© 2010–2022 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://angular.io/api/router/testing/RouterTestingModule