• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript testing.RouterTestingModule类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了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;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript upgrade.setUpLocationSync函数代码示例发布时间:2022-05-28
下一篇:
TypeScript router-deprecated.Router类代码示例发布时间:2022-05-28
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap