Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
brunolm committed Jun 18, 2018
1 parent 1ee5d9b commit 7dc2a82
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/about/about.component.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { HttpClientTestingModule } from '@angular/common/http/testing';
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { FormsModule } from '@angular/forms';
import { NgxReduxStatePropsService } from 'ngx-redux-state-props';

import { SharedModule } from '../shared/shared.module';
import { AboutComponent } from './about.component';
import { AboutActions } from './services/about.actions';

Expand All @@ -12,7 +14,7 @@ describe('AboutComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [AboutComponent],
imports: [HttpClientTestingModule],
imports: [HttpClientTestingModule, SharedModule, FormsModule],
providers: [AboutActions, NgxReduxStatePropsService],
}).compileComponents();
}));
Expand Down

0 comments on commit 7dc2a82

Please sign in to comment.