Skip to content

Commit

Permalink
fix: remove router module from test
Browse files Browse the repository at this point in the history
  • Loading branch information
felixroos committed Feb 17, 2020
1 parent a4dd259 commit 6dcc4a5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/ui/src/lib/utility/tab/tab.component.spec.ts
Expand Up @@ -5,7 +5,6 @@ import { TabComponent, LoginFormComponent, SignupFormComponent, FocusDirective,
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { IoModule } from '@ec.components/ui/lib/io/io.module';
import { CommonModule } from '@angular/common';
import { RouterModule } from '@angular/router';

describe('TabComponent', () => {
/* let component: TabComponent;
Expand All @@ -16,7 +15,7 @@ describe('TabComponent', () => {
TestBed.configureTestingModule(
{
declarations: [TabsComponent, TabComponent, LoginFormComponent, SignupFormComponent, FocusDirective],
imports: [FormsModule, ReactiveFormsModule, IoModule, CommonModule, RouterModule, RouterTestingModule],
imports: [FormsModule, ReactiveFormsModule, IoModule, CommonModule, RouterTestingModule],
providers: [KeycommandsService],
}).compileComponents();
}));
Expand Down

0 comments on commit 6dcc4a5

Please sign in to comment.