Skip to content

Commit

Permalink
test: fix compiler issue
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Mar 19, 2020
1 parent f460047 commit 3241dd1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { MarkdownRadarChartComponent } from './markdown-radar-chart.component';
import { SharedModule } from '../../shared.module';
import { FeaturesModule } from '../../../features/features.module';
import { MarkdownModule } from 'ngx-markdown';

describe('MarkdownRadarChartComponent', () => {
Expand All @@ -11,7 +10,7 @@ describe('MarkdownRadarChartComponent', () => {

beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [SharedModule, FeaturesModule, MarkdownModule],
imports: [SharedModule, SharedModule, MarkdownModule],
declarations: [ MarkdownRadarChartComponent ]
})
.compileComponents();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { MarkdownRatingItemComponent } from './markdown-rating-item.component';
import { SharedModule } from '../../../shared.module';
import { FeaturesModule } from '../../../../features/features.module';
import { MarkdownModule } from 'ngx-markdown';

describe('MarkdownRatingItemComponent', () => {
Expand All @@ -11,7 +10,7 @@ describe('MarkdownRatingItemComponent', () => {

beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [SharedModule, FeaturesModule, MarkdownModule],
imports: [SharedModule, SharedModule, MarkdownModule],
declarations: [ MarkdownRatingItemComponent ]
})
.compileComponents();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { MarkdownRatingComponent } from './markdown-rating.component';
import { SharedModule } from '../../../shared.module';
import { FeaturesModule } from '../../../../features/features.module';
import { MarkdownModule } from 'ngx-markdown';

describe('MarkdownRatingComponent', () => {
Expand All @@ -11,7 +10,7 @@ describe('MarkdownRatingComponent', () => {

beforeEach(async(() => {
TestBed.configureTestingModule({
imports: [SharedModule, FeaturesModule, MarkdownModule],
imports: [SharedModule, SharedModule, MarkdownModule],
declarations: [ MarkdownRatingComponent ]
})
.compileComponents();
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"moduleResolution": "node",
"importHelpers": true,
"target": "es5",
"allowSyntheticDefaultImports": true,
"typeRoots": [
"node_modules/@types"
],
Expand Down

0 comments on commit 3241dd1

Please sign in to comment.