Skip to content

Commit b70bb60

Browse files
committed
checkin test
1 parent a4d8960 commit b70bb60

File tree

1 file changed

+9
-18
lines changed

1 file changed

+9
-18
lines changed

src/lib/paginator/paginator.spec.ts

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,26 @@
1-
import {async, ComponentFixture, TestBed} from '@angular/core/testing';
2-
import {Component, ViewChild} from '@angular/core';
1+
import {async, TestBed} from '@angular/core/testing';
32
import {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+
}

0 commit comments

Comments
 (0)