Skip to content

Commit

Permalink
remove style module import in test
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalerba committed Feb 28, 2017
1 parent a7f0da3 commit 93aef0a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/lib/button/button.spec.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
import {async, TestBed, ComponentFixture} from '@angular/core/testing';
import {async, ComponentFixture, TestBed} from '@angular/core/testing';
import {Component} from '@angular/core';
import {By} from '@angular/platform-browser';
import {MdButtonModule} from './index';
import {ViewportRuler} from '../core/overlay/position/viewport-ruler';
import {FakeViewportRuler} from '../core/overlay/position/fake-viewport-ruler';
import {StyleModule} from '../core/style/index';


describe('MdButton', () => {

beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [MdButtonModule.forRoot(), StyleModule],
imports: [MdButtonModule.forRoot()],
declarations: [TestApp],
providers: [
{provide: ViewportRuler, useClass: FakeViewportRuler},
Expand Down

0 comments on commit 93aef0a

Please sign in to comment.