| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- /**
- * @license Angular v8.1.0
- * (c) 2010-2019 Google LLC. https://angular.io/
- * License: MIT
- */
- import { ChildrenOutletContexts } from '@angular/router';
- import { Compiler } from '@angular/core';
- import { ExtraOptions } from '@angular/router';
- import { Injector } from '@angular/core';
- import { Location } from '@angular/common';
- import { ModuleWithProviders } from '@angular/core';
- import { NgModuleFactory } from '@angular/core';
- import { NgModuleFactoryLoader } from '@angular/core';
- import { Route } from '@angular/router';
- import { Router } from '@angular/router';
- import { Routes } from '@angular/router';
- import { UrlHandlingStrategy } from '@angular/router';
- import { UrlSerializer } from '@angular/router';
- /**
- * @description
- *
- * Sets up the router to be used for testing.
- *
- * The modules sets up the router to be used for testing.
- * It provides spy implementations of `Location`, `LocationStrategy`, and {@link
- * NgModuleFactoryLoader}.
- *
- * @usageNotes
- * ### Example
- *
- * ```
- * beforeEach(() => {
- * TestBed.configureTestModule({
- * imports: [
- * RouterTestingModule.withRoutes(
- * [{path: '', component: BlankCmp}, {path: 'simple', component: SimpleCmp}]
- * )
- * ]
- * });
- * });
- * ```
- *
- * @publicApi
- */
- export declare class RouterTestingModule {
- static withRoutes(routes: Routes, config?: ExtraOptions): ModuleWithProviders<RouterTestingModule>;
- }
- /**
- * Router setup factory function used for testing.
- *
- * @publicApi
- */
- export declare function setupTestingRouter(urlSerializer: UrlSerializer, contexts: ChildrenOutletContexts, location: Location, loader: NgModuleFactoryLoader, compiler: Compiler, injector: Injector, routes: Route[][], opts?: ExtraOptions, urlHandlingStrategy?: UrlHandlingStrategy): Router;
- /**
- * Router setup factory function used for testing.
- *
- * @deprecated As of v5.2. The 2nd-to-last argument should be `ExtraOptions`, not
- * `UrlHandlingStrategy`
- * @publicApi
- */
- export declare function setupTestingRouter(urlSerializer: UrlSerializer, contexts: ChildrenOutletContexts, location: Location, loader: NgModuleFactoryLoader, compiler: Compiler, injector: Injector, routes: Route[][], urlHandlingStrategy?: UrlHandlingStrategy): Router;
- /**
- * @description
- *
- * Allows to simulate the loading of ng modules in tests.
- *
- * ```
- * const loader = TestBed.get(NgModuleFactoryLoader);
- *
- * @Component({template: 'lazy-loaded'})
- * class LazyLoadedComponent {}
- * @NgModule({
- * declarations: [LazyLoadedComponent],
- * imports: [RouterModule.forChild([{path: 'loaded', component: LazyLoadedComponent}])]
- * })
- *
- * class LoadedModule {}
- *
- * // sets up stubbedModules
- * loader.stubbedModules = {lazyModule: LoadedModule};
- *
- * router.resetConfig([
- * {path: 'lazy', loadChildren: 'lazyModule'},
- * ]);
- *
- * router.navigateByUrl('/lazy/loaded');
- * ```
- *
- * @publicApi
- */
- export declare class SpyNgModuleFactoryLoader implements NgModuleFactoryLoader {
- private compiler;
- /**
- * @docsNotRequired
- */
- private _stubbedModules;
- /**
- * @docsNotRequired
- */
- /**
- * @docsNotRequired
- */
- stubbedModules: {
- [path: string]: any;
- };
- constructor(compiler: Compiler);
- load(path: string): Promise<NgModuleFactory<any>>;
- }
- export { }
|