File tree Expand file tree Collapse file tree 1 file changed +9
-18
lines changed Expand file tree Collapse file tree 1 file changed +9
-18
lines changed Original file line number Diff line number Diff line change 1- import { async , ComponentFixture , TestBed } from '@angular/core/testing' ;
2- import { Component , ViewChild } from '@angular/core' ;
1+ import { async , TestBed } from '@angular/core/testing' ;
32import { MdPaginatorModule } from './index' ;
3+ import { Component } from '@angular/core' ;
44
5- describe ( 'CdkTable' , ( ) => {
6- let fixture : ComponentFixture < SimpleMdPaginatorApp > ;
7-
8- let component : SimpleMdPaginatorApp ;
5+ describe ( 'MdPaginator' , ( ) => {
6+ let x = 0 ;
97
108 beforeEach ( async ( ( ) => {
119 TestBed . configureTestingModule ( {
1210 imports : [ MdPaginatorModule ] ,
13- declarations : [ SimpleMdPaginatorApp ] ,
11+ declarations : [ MdPaginatorApp ] ,
1412 } ) . compileComponents ( ) ;
15-
16- fixture = TestBed . createComponent ( SimpleMdPaginatorApp ) ;
17-
18- component = fixture . componentInstance ;
19-
20- fixture . detectChanges ( ) ;
2113 } ) ) ;
2214
23- it ( 'should initially fail ' , ( ) => {
15+ it ( 'should test ' , ( ) => {
2416 expect ( true ) . toBe ( false ) ;
2517 } ) ;
2618} ) ;
2719
2820@Component ( {
2921 template : `
30- <md-paginator></md-paginator>
22+ test
3123 `
3224} )
33- class SimpleMdPaginatorApp {
34-
35- }
25+ class MdPaginatorApp {
26+ }
You can’t perform that action at this time.
0 commit comments