Skip to content

Commit

Permalink
Adds modules to spec file
Browse files Browse the repository at this point in the history
  • Loading branch information
devchris committed Aug 30, 2019
1 parent 8364ecc commit 1292967
Showing 1 changed file with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,14 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { GoFileUploadComponent } from './go-file-upload.component';
import { CommonModule } from '@angular/common';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { GoButtonModule } from '../go-button/go-button.module';
import { GoHintModule } from '../go-hint/go-hint.module';

describe('GoFileUploadComponent', () => {
let component: GoFileUploadComponent;
let fixture: ComponentFixture<GoFileUploadComponent>;

beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ GoFileUploadComponent ]
declarations: [GoFileUploadComponent],
imports: [
CommonModule,
FormsModule,
GoButtonModule,
GoHintModule,
ReactiveFormsModule
]
})
.compileComponents();
}));
Expand Down

0 comments on commit 1292967

Please sign in to comment.