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' ;
3
2
import { MdPaginatorModule } from './index' ;
3
+ import { Component } from '@angular/core' ;
4
4
5
- describe ( 'CdkTable' , ( ) => {
6
- let fixture : ComponentFixture < SimpleMdPaginatorApp > ;
7
-
8
- let component : SimpleMdPaginatorApp ;
5
+ describe ( 'MdPaginator' , ( ) => {
6
+ let x = 0 ;
9
7
10
8
beforeEach ( async ( ( ) => {
11
9
TestBed . configureTestingModule ( {
12
10
imports : [ MdPaginatorModule ] ,
13
- declarations : [ SimpleMdPaginatorApp ] ,
11
+ declarations : [ MdPaginatorApp ] ,
14
12
} ) . compileComponents ( ) ;
15
-
16
- fixture = TestBed . createComponent ( SimpleMdPaginatorApp ) ;
17
-
18
- component = fixture . componentInstance ;
19
-
20
- fixture . detectChanges ( ) ;
21
13
} ) ) ;
22
14
23
- it ( 'should initially fail ' , ( ) => {
15
+ it ( 'should test ' , ( ) => {
24
16
expect ( true ) . toBe ( false ) ;
25
17
} ) ;
26
18
} ) ;
27
19
28
20
@Component ( {
29
21
template : `
30
- <md-paginator></md-paginator>
22
+ test
31
23
`
32
24
} )
33
- class SimpleMdPaginatorApp {
34
-
35
- }
25
+ class MdPaginatorApp {
26
+ }
You can’t perform that action at this time.
0 commit comments