Skip to content

Commit 37bcf6f

Browse files
author
Travis CI User
committed
a45e76d fix: broken unit tests
1 parent fd11525 commit 37bcf6f

File tree

59 files changed

+119
-89
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+119
-89
lines changed

3-es5.131cd7f3fbe15caa6f25.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

3-es5.131cd7f3fbe15caa6f25.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

4-es2015.d2c81f0719c6c9841301.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

4-es2015.d2c81f0719c6c9841301.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/showcase/chart/chart.component.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { FormsModule } from '@angular/forms';
33
import { UiModelModule } from '@ui-model/angular';
44
import { UiModelBootstrapModule } from '@ui-model/angular-bootstrap';
55
import { UiModelD3Module } from '@ui-model/angular-d3';
6+
import { UiModelSvgModule } from '@ui-model/angular-svg';
67
import { ChartComponent } from './chart.component';
78

89
describe('showcase > ShowcaseChartComponent', () => {
@@ -16,6 +17,7 @@ describe('showcase > ShowcaseChartComponent', () => {
1617
UiModelModule,
1718
UiModelBootstrapModule,
1819
UiModelD3Module,
20+
UiModelSvgModule,
1921
FormsModule,
2022
],
2123
})

app/showcase/d3-basic/d3-basic.component.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2+
import { UiModelSvgModule } from '@ui-model/angular-svg';
23

34
import { D3BasicComponent } from './d3-basic.component';
45

@@ -8,6 +9,7 @@ describe('showcase > ShowcaseD3BasicComponent', () => {
89

910
beforeEach(async(() => {
1011
TestBed.configureTestingModule({
12+
imports: [UiModelSvgModule],
1113
declarations: [D3BasicComponent],
1214
})
1315
.compileComponents();

app/showcase/d3-gauge/d3-gauge.component.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
22
import { FormsModule } from '@angular/forms';
3+
import { UiModelSvgModule } from '@ui-model/angular-svg';
34

45
import { D3GaugeComponent } from './d3-gauge.component';
56

@@ -9,7 +10,7 @@ describe('showcase > D3GaugeComponent', () => {
910

1011
beforeEach(async(() => {
1112
TestBed.configureTestingModule({
12-
imports: [FormsModule],
13+
imports: [FormsModule, UiModelSvgModule],
1314
declarations: [D3GaugeComponent],
1415
})
1516
.compileComponents();

app/showcase/d3-geo-map/d3-geo-map.component.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
22
import { UiModelD3Module } from '@ui-model/angular-d3';
3+
import { UiModelSvgModule } from '@ui-model/angular-svg';
34

45
import { D3GeoMapComponent } from './d3-geo-map.component';
56

@@ -9,7 +10,7 @@ describe('showcase > D3GeoMapComponent', () => {
910

1011
beforeEach(async(() => {
1112
TestBed.configureTestingModule({
12-
imports: [UiModelD3Module],
13+
imports: [UiModelD3Module, UiModelSvgModule],
1314
declarations: [D3GeoMapComponent],
1415
providers: [],
1516
})

app/showcase/d3-line-chart/d3-line-chart.component.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
22
import { D3ColorsPipe } from '@ui-model/angular-d3';
3+
import { UiModelSvgModule } from '@ui-model/angular-svg';
34
import { SharedModule } from '../../shared/shared.module';
45

56
import { D3LineChartComponent } from './d3-line-chart.component';
@@ -10,7 +11,7 @@ describe('showcase > ShowcaseD3LineChartComponent', () => {
1011

1112
beforeEach(async(() => {
1213
TestBed.configureTestingModule({
13-
imports: [SharedModule],
14+
imports: [SharedModule, UiModelSvgModule],
1415
declarations: [D3LineChartComponent, D3ColorsPipe],
1516
})
1617
.compileComponents();

app/showcase/measure/measure.component.spec.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2+
import { FormsModule } from '@angular/forms';
3+
import { UiModelModule } from '@ui-model/angular';
4+
import { UiModelSvgModule } from '@ui-model/angular-svg';
25

36
import { MeasureComponent } from './measure.component';
47

@@ -8,6 +11,7 @@ describe('MeasureComponent', () => {
811

912
beforeEach(async(() => {
1013
TestBed.configureTestingModule({
14+
imports: [FormsModule, UiModelModule, UiModelSvgModule],
1115
declarations: [MeasureComponent],
1216
})
1317
.compileComponents();

0 commit comments

Comments
 (0)