当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript testing.RouterTestingModule类代码示例

本文整理汇总了TypeScript中@angular/router/testing.RouterTestingModule的典型用法代码示例。如果您正苦于以下问题:TypeScript RouterTestingModule类的具体用法?TypeScript RouterTestingModule怎么用?TypeScript RouterTestingModule使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了RouterTestingModule类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: beforeEach

    beforeEach(() => {

        TestBed.configureTestingModule({
            declarations: [HomeComponent, InventurComponent, InventarComponent, BilanzComponent],
            providers: [
                InventurService,
                LoggerService,
                {
                    provide: QueryGatewayService,
                    useValue: jasmine.createSpyObj('QueryGatewayService', ['send'])
                }
            ],
            imports: [NgReduxModule, HttpClientTestingModule, CommandGatewayModule, RouterTestingModule.withRoutes(DEMO_APP_ROUTES)],
            schemas: [NO_ERRORS_SCHEMA]
        });
    });
开发者ID:haschi,项目名称:dominium,代码行数:16,代码来源:inventur.service.spec.ts

示例2: beforeEach

 beforeEach(async(() => {
   TestBed.configureTestingModule({
     imports: [
       RouterTestingModule.withRoutes([
         { path: '', redirectTo: '/lambdas', pathMatch: 'full' },
         { path: 'lambdas', component: LambdasComponent },
       ]),
       ListModule,
       FormsModule,
       AceEditorModule,
       ClickOutsideModule,
     ],
     declarations: [AppComponent, TimeAgoPipe, LambdasComponent],
     schemas: [NO_ERRORS_SCHEMA],
   }).compileComponents();
 }));
开发者ID:marynaKhromova,项目名称:console,代码行数:16,代码来源:app.component.spec.ts

示例3: beforeEach

  beforeEach(() => {
    TestBed.configureTestingModule({
      imports: [
        RouterTestingModule.withRoutes([]),
        NbThemeModule.forRoot(),
        NbLayoutModule,
        NbSearchModule,
      ],
    });

    TestBed.createComponent(NbLayoutComponent);

    fixture = TestBed.createComponent(NbSearchComponent);
    searchComponent = fixture.componentInstance;
    fixture.detectChanges();
  });
开发者ID:kevinheader,项目名称:nebular,代码行数:16,代码来源:search.component.spec.ts

示例4: beforeEach

  beforeEach(async(() => {
    TestBed.configureTestingModule({
      imports: [
        RouterTestingModule.withRoutes([]),
        ReactiveFormsModule,
        HttpClientModule,
        AngularFontAwesomeModule,
        BrowserAnimationsModule
      ],

      declarations: [
        AppComponent
      ],
      providers: []
    }).compileComponents();
  }));
开发者ID:AmitDebadwar,项目名称:ProgramPractice,代码行数:16,代码来源:app.component.spec.ts

示例5: beforeEach

  beforeEach(() => {
    TestBed.configureTestingModule({
      imports: [
        RouterTestingModule.withRoutes([]),
        NbThemeModule.forRoot(),
        NbLayoutModule,
        NbDatepickerModule.forRoot(),
      ],
      declarations: [NbDatepickerTestComponent],
    });

    fixture = TestBed.createComponent(NbDatepickerTestComponent);
    appRef = TestBed.get(ApplicationRef);

    fixture.detectChanges();
  });
开发者ID:kevinheader,项目名称:nebular,代码行数:16,代码来源:datepicker.spec.ts

示例6: beforeEach

 beforeEach(() => {
     TestBed.configureTestingModule({
         imports: [
             HttpClientModule,
             RouterTestingModule.withRoutes([])
         ],
         providers: [
             UiStore,
             UiStore,
             TokenStorage,
             AuthenticationService,
             ClientsService,
             ChannelsService,
         ]
     });
 });
开发者ID:reisub0,项目名称:mainflux,代码行数:16,代码来源:ui.store.spec.ts

示例7: beforeEach

  beforeEach(async(() => {

    TestBed.configureTestingModule({
      imports: [AppModule, RouterTestingModule.withRoutes([])],
      providers: [ProvidedService, MockBackend, BaseRequestOptions,
        {
          provide: Http,
          useFactory: (mockBackend: MockBackend, defaultOptions: RequestOptions) => {
            return new Http(mockBackend, defaultOptions);
          },
          useClass: Http,
          deps: [MockBackend, BaseRequestOptions]
        }
      ]
    }).compileComponents();
  }));
开发者ID:MarcosPrieto,项目名称:Angular-AlbumStoreProductPage,代码行数:16,代码来源:product-description-html-uses-dynamic-albuminfo-imageurl.projects.spec.ts

示例8: beforeEach

  beforeEach(() => {
    TestBed.configureTestingModule({
      imports: [
        HttpClientTestingModule,
        RouterTestingModule.withRoutes(routes),
      ],
      providers: [
        AlertService,
        UserService,
      ]
    });

    injector = getTestBed();
    service = injector.get(UserService);
    http_mock = injector.get(HttpTestingController);
  });
开发者ID:woocommerce-quiz,项目名称:comixed,代码行数:16,代码来源:user.service.spec.ts

示例9: async

 async(() => {
   TestBed.configureTestingModule({
     imports: [
       SyndesisCommonModule.forRoot(),
       SyndesisStoreModule,
       RouterTestingModule.withRoutes([]),
       ModalModule.forRoot(),
       TooltipModule.forRoot(),
       TabsModule.forRoot(),
       NotificationModule,
       PatternflyUIModule,
       IntegrationListModule
     ],
     declarations: [IntegrationListPage]
   }).compileComponents();
 })
开发者ID:gnodet,项目名称:syndesis,代码行数:16,代码来源:list-page.component.spec.ts

示例10: beforeEach

 beforeEach(async(() => {
   mockApiService = new MockApiService();
   TestBed.configureTestingModule({
     imports: [
       FilterModule.forRoot(),
       RouterTestingModule.withRoutes(config),
       SharedModule
     ],
     declarations: [ DefaultComponent ],
     providers: [
       MediaService,
       { provide: ApiService, useValue: mockApiService },
     ]
   })
   .compileComponents();
 }));
开发者ID:adriancarriger,项目名称:pv-site,代码行数:16,代码来源:default.component.spec.ts


注:本文中的@angular/router/testing.RouterTestingModule类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。