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


TypeScript material.MaterialModule类代码示例

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


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

示例1: beforeEach

  beforeEach(async(() => {
    const fakeLocalStorageService = {
      store: (nick: string) => nick,
    };

    const fakeRouter = {
      navigate: (commands: any) => commands,
    };

    TestBed.configureTestingModule({
      declarations: [
        EntryComponent,
      ],
      imports: [
        FormsModule,
        Ng2Webstorage,
        MaterialModule.forRoot(),
      ],
      providers: [
        AnimationsService,
        {
          provide: LocalStorageService,
          useValue: fakeLocalStorageService,
        },
        {
          provide: Router,
          useValue: fakeRouter,
        },
      ]
    })
    .compileComponents();
  }));
开发者ID:tarlepp,项目名称:Angular2-Firebase-Material-Demo,代码行数:32,代码来源:entry.component.spec.ts

示例2: beforeEach

 beforeEach(async(() => {
     TestBed.configureTestingModule({
         imports: [MaterialModule.forRoot(), FormsModule],
         declarations: [PublishComponent], // declare the test component
         providers: [{ provide: AppClientService, useValue: app }, MdSnackBar]
     }).compileComponents();
 }));
开发者ID:csongysun,项目名称:HJPT.f,代码行数:7,代码来源:publish.component.spec.ts

示例3: beforeEach

 beforeEach(() => {
   TestBed.configureTestingModule({
     declarations: [
       AppComponent
     ],
     imports: [ RouterTestingModule, MaterialModule.forRoot() ]
   });
 });
开发者ID:idugalic,项目名称:micro-company,代码行数:8,代码来源:app.component.spec.ts

示例4: beforeEach

 beforeEach(async(() => {
   TestBed.configureTestingModule({
     declarations: [
       AboutListComponent,
     ],
     imports: [
       MaterialModule.forRoot(),
     ],
   })
   .compileComponents();
 }));
开发者ID:padamshrestha,项目名称:angular2-firebase-material-demo,代码行数:11,代码来源:about-list.component.spec.ts

示例5: beforeEach

 beforeEach(async(() => {
   TestBed.configureTestingModule({
     imports: [StoreModule.provideStore({ employerStore: reducer }, {}),
     MaterialModule.forRoot(), RouterModule.forRoot(routes)],
     declarations: [SidebarSummaryComponent],
     providers: [
       { provide: APP_BASE_HREF, useValue: '/' }
     ]
   })
     .compileComponents();
 }));
开发者ID:mnitdeed,项目名称:angular2-nativescript-auth0,代码行数:11,代码来源:sidebar-summary.component.spec.ts

示例6: beforeEach

 beforeEach(() => {
   TestBed.configureTestingModule({
     imports: [FormsModule, MaterialModule.forRoot(), RouterTestingModule.withRoutes(config)],
     declarations: [TestComponent,
       AppComponent,
       AboutComponent],
     providers: [
       { provide: APP_BASE_HREF, useValue: '/' }
     ]
   });
 });
开发者ID:padamshrestha,项目名称:angular2-material-seed,代码行数:11,代码来源:app.component.spec.ts

示例7: beforeEach

 beforeEach(() => {
   TestBed.configureTestingModule({
     imports: [
       MaterialModule.forRoot(),
       ReactiveFormsModule,
       RouterTestingModule.withRoutes(routes),
       StoreDevToolsModule
       ],
     providers: [],
     declarations: [AppComponent, HomeComponent, NotFound404Component]
   });
 });
开发者ID:Ecafracs,项目名称:flatthirteen,代码行数:12,代码来源:app.component.spec.ts

示例8: beforeEach

 beforeEach(() => {
   TestBed.configureTestingModule({
     declarations: [
       AppComponent
     ],
     imports: [HttpModule, RouterModule.forRoot(routes), MaterialModule.forRoot()],
     providers: [{ provide: RegDataService, useClass: mockRegDataSvc },
     { provide: APP_BASE_HREF, useValue: '/' }, {
       provide: AuthService, useClass: mockAuthSvc
     }, MenuItems],
     schemas: [CUSTOM_ELEMENTS_SCHEMA],
   });
   TestBed.compileComponents();
 });
开发者ID:mnitdeed,项目名称:angular2-nativescript-auth0,代码行数:14,代码来源:app.component.spec.ts

示例9: beforeEach

  beforeEach(() => {
    TestBed.configureTestingModule({
      imports: [
        BrowserModule,
        FormsModule,
        HttpModule,
        MaterializeModule,
        MaterialModule.forRoot(),
        RouterTestingModule,
        CalendarModule.forRoot(),
        DragulaModule,
        EditorModule,
        ReCaptchaModule,
      ],
      declarations: [
        AppComponent,
        PresentationComponent,
        DashboardComponent,
        CourseDetailsComponent,
        NavbarComponent,
        FooterComponent,
        LoginModalComponent,
        SettingsComponent,
        ErrorMessageComponent,
        CommentComponent,
        FileGroupComponent,
        CalendarComponent,
        TimeAgoPipe,
        FileSelectDirective,
        FileDropDirective,
        VideoSessionComponent,
        FileUploaderComponent,
        StreamComponent,
        ChatLineComponent,
      ],
      providers: [
        { provide: AuthenticationService, useClass: MockAuthenticationService },
        { provide: LoginModalService, useClass: MockLoginModalService },
      ]
    });

    fixture = TestBed.createComponent(NavbarComponent);
    comp = fixture.componentInstance;

    de1 = fixture.debugElement.query(By.css('#logo-container'));
    el1 = de1.nativeElement;

    fixture.detectChanges();
  });
开发者ID:gabrielTaSa,项目名称:full-teaching,代码行数:49,代码来源:navbar.component.spec.ts

示例10: beforeEach

    beforeEach(async(() => {

        TestBed.configureTestingModule({

            imports: [ReactiveFormsModule, DynamicFormsCoreModule.forRoot(), MaterialModule.forRoot()],
            declarations: [DynamicFormMaterialComponent]

        }).compileComponents().then(() => {

            fixture = TestBed.createComponent(DynamicFormMaterialComponent as Type<DynamicFormMaterialComponent>);

            component = fixture.componentInstance;
            debugElement = fixture.debugElement;
        });
    }));
开发者ID:CodeFork,项目名称:ng2-dynamic-forms,代码行数:15,代码来源:dynamic-form-material.component.spec.ts


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