當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript BsDropdownModule.forRoot方法代碼示例

本文整理匯總了TypeScript中ngx-bootstrap/dropdown.BsDropdownModule.forRoot方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript BsDropdownModule.forRoot方法的具體用法?TypeScript BsDropdownModule.forRoot怎麽用?TypeScript BsDropdownModule.forRoot使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ngx-bootstrap/dropdown.BsDropdownModule的用法示例。


在下文中一共展示了BsDropdownModule.forRoot方法的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: async

 async(() => {
   const moduleConfig = {
     imports: [
       ApiModule.forRoot(),
       PlatformModule.forRoot(),
       CoreModule.forRoot(),
       SyndesisCommonModule.forRoot(),
       ActionModule,
       ListModule,
       ChartModule,
       ModalModule.forRoot(),
       TooltipModule.forRoot(),
       BsDropdownModule.forRoot(),
       RouterTestingModule.withRoutes([]),
       NotificationModule,
       IntegrationListModule,
       SyndesisStoreModule
     ],
     declarations: [
       DashboardMetricsComponent,
       DashboardComponent,
       DashboardConnectionsComponent,
       DashboardIntegrationsComponent
     ],
     providers: [
       ConfigService,
       ModalService,
     ]
   };
   TestBed.configureTestingModule(moduleConfig).compileComponents();
 })
開發者ID:gnodet,項目名稱:syndesis,代碼行數:31,代碼來源:dashboard.component.spec.ts

示例2: describe

describe('CephfsClientsComponent', () => {
  let component: CephfsClientsComponent;
  let fixture: ComponentFixture<CephfsClientsComponent>;

  configureTestBed({
    imports: [
      RouterTestingModule,
      BsDropdownModule.forRoot(),
      SharedModule,
      HttpClientTestingModule
    ],
    declarations: [CephfsClientsComponent],
    providers: i18nProviders
  });

  beforeEach(() => {
    fixture = TestBed.createComponent(CephfsClientsComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});
開發者ID:IlsooByun,項目名稱:ceph,代碼行數:25,代碼來源:cephfs-clients.component.spec.ts

示例3: beforeEach

  beforeEach(() => {
    const configServiceStub = {
      getSettings: (...params) => APP_NAME
    };

    TestBed.configureTestingModule({
      imports: [
        CoreModule.forRoot(),
        SyndesisStoreModule,
        SyndesisCommonModule.forRoot(),
        ModalModule.forRoot(),
        RouterTestingModule.withRoutes([]),
        CollapseModule.forRoot(),
        BsDropdownModule.forRoot(),
        NotificationModule,
        NgRxStoreModule.forRoot(platformReducer),
      ],
      providers: [
        ERROR_HANDLER_PROVIDERS,
        ConfigService,
        UserService,
        TestSupportService,
        NavigationService,
        ApiHttpService,
        { provide: ConfigService, useValue: configServiceStub }
      ],
      declarations: [AppComponent]
    });
    TestBed.compileComponents();
  });
開發者ID:gnodet,項目名稱:syndesis,代碼行數:30,代碼來源:app.component.spec.ts

示例4: describe

describe('ImageListComponent', () => {
  let component: ImageListComponent;
  let fixture: ComponentFixture<ImageListComponent>;

  configureTestBed({
    declarations: [ImageListComponent, MirrorHealthColorPipe],
    imports: [
      SharedModule,
      BsDropdownModule.forRoot(),
      TabsModule.forRoot(),
      ProgressbarModule.forRoot(),
      HttpClientTestingModule
    ],
    providers: i18nProviders
  });

  beforeEach(() => {
    fixture = TestBed.createComponent(ImageListComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});
開發者ID:IlsooByun,項目名稱:ceph,代碼行數:26,代碼來源:image-list.component.spec.ts

示例5: describe

describe('HostDetailsComponent', () => {
  let component: HostDetailsComponent;
  let fixture: ComponentFixture<HostDetailsComponent>;

  configureTestBed({
    imports: [
      HttpClientTestingModule,
      TabsModule.forRoot(),
      BsDropdownModule.forRoot(),
      SharedModule
    ],
    declarations: [HostDetailsComponent]
  });

  beforeEach(() => {
    fixture = TestBed.createComponent(HostDetailsComponent);
    component = fixture.componentInstance;

    component.selection = new CdTableSelection();

    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});
開發者ID:C2python,項目名稱:ceph,代碼行數:27,代碼來源:host-details.component.spec.ts

示例6: describe

describe('CephfsDetailComponent', () => {
  let component: CephfsDetailComponent;
  let fixture: ComponentFixture<CephfsDetailComponent>;

  configureTestBed({
    imports: [
      SharedModule,
      RouterTestingModule,
      BsDropdownModule.forRoot(),
      ProgressbarModule.forRoot(),
      TabsModule.forRoot(),
      HttpClientTestingModule
    ],
    declarations: [CephfsDetailComponent, CephfsChartStubComponent, CephfsClientsStubComponent]
  });

  beforeEach(() => {
    fixture = TestBed.createComponent(CephfsDetailComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});
開發者ID:C2python,項目名稱:ceph,代碼行數:26,代碼來源:cephfs-detail.component.spec.ts

示例7: async

 async(() => {
   TestBed.configureTestingModule({
     imports: [
       SyndesisCommonModule.forRoot(),
       ChartsModule,
       ModalModule.forRoot(),
       TooltipModule.forRoot(),
       BsDropdownModule.forRoot(),
       StoreModule,
       RouterTestingModule.withRoutes([]),
       RestangularModule.forRoot(),
       NotificationModule,
       IntegrationsListModule
     ],
     declarations: [
       DashboardComponent,
       EmptyStateComponent,
       DashboardConnectionsComponent,
       DashboardIntegrationsComponent
     ],
     providers: [
       MockBackend,
       { provide: RequestOptions, useClass: BaseRequestOptions },
       {
         provide: Http,
         useFactory: (backend, options) => {
           return new Http(backend, options);
         },
         deps: [MockBackend, RequestOptions]
       },
       TourService
     ]
   }).compileComponents();
 })
開發者ID:hawtio,項目名稱:hawtio-ipaas,代碼行數:34,代碼來源:dashboard.component.spec.ts

示例8: describe

describe('HostsComponent', () => {
  let component: HostsComponent;
  let fixture: ComponentFixture<HostsComponent>;

  const fakeAuthStorageService = {
    getPermissions: () => {
      return new Permissions({ hosts: ['read', 'update', 'create', 'delete'] });
    }
  };

  configureTestBed({
    imports: [
      SharedModule,
      HttpClientTestingModule,
      TabsModule.forRoot(),
      BsDropdownModule.forRoot(),
      RouterTestingModule
    ],
    providers: [{ provide: AuthStorageService, useValue: fakeAuthStorageService }],
    declarations: [HostsComponent, HostDetailsComponent]
  });

  beforeEach(() => {
    fixture = TestBed.createComponent(HostsComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});
開發者ID:leseb,項目名稱:ceph,代碼行數:32,代碼來源:hosts.component.spec.ts

示例9: async

 async(() => {
   TestBed.configureTestingModule({
     imports: [
       CommonModule,
       SyndesisCommonModule.forRoot(),
       RouterTestingModule.withRoutes([]),
       ModalModule.forRoot(),
       BsDropdownModule.forRoot(),
       StoreModule,
       NotificationModule
     ],
     declarations: [ConnectionsListComponent]
   }).compileComponents();
 })
開發者ID:hawtio,項目名稱:hawtio-ipaas,代碼行數:14,代碼來源:list.component.spec.ts

示例10: async

 async(() => {
   TestBed.configureTestingModule({
     imports: [
       CommonModule,
       SyndesisCommonModule.forRoot(),
       RouterTestingModule.withRoutes([]),
       ModalModule.forRoot(),
       TooltipModule.forRoot(),
       BsDropdownModule.forRoot(),
       TabsModule.forRoot(),
       SyndesisStoreModule,
       ActionModule,
       ListModule,
       NotificationModule
     ],
     declarations: [IntegrationStatusComponent, IntegrationListComponent]
   }).compileComponents();
 })
開發者ID:gnodet,項目名稱:syndesis,代碼行數:18,代碼來源:list.component.spec.ts


注:本文中的ngx-bootstrap/dropdown.BsDropdownModule.forRoot方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。