From 4f5f3a0ebc6d8a76645ff3e7a5045c5fbd2e46ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Farzat?= Date: Tue, 19 Feb 2019 20:55:34 -0300 Subject: [PATCH] Fixing tests --- src/app/shared/plotly.service.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/shared/plotly.service.spec.ts b/src/app/shared/plotly.service.spec.ts index ea34dba..f9f6c2c 100644 --- a/src/app/shared/plotly.service.spec.ts +++ b/src/app/shared/plotly.service.spec.ts @@ -32,7 +32,7 @@ describe('PlotlyService', () => { expect(service).toBeTruthy(); })); - fit('should return the plotly object', inject([PlotlyService], (service: PlotlyService) => { + it('should return the plotly object', inject([PlotlyService], (service: PlotlyService) => { expect(service.getPlotly()).toBe(PlotlyJS); }));