本文整理汇总了TypeScript中ngx-bootstrap/dropdown.BsDropdownModule类的典型用法代码示例。如果您正苦于以下问题:TypeScript BsDropdownModule类的具体用法?TypeScript BsDropdownModule怎么用?TypeScript BsDropdownModule使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了BsDropdownModule类的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类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论