From 673b6d648d9a60d63f57626ba47a32096f497746 Mon Sep 17 00:00:00 2001 From: Will Soto Date: Sat, 11 Sep 2021 09:49:13 -0400 Subject: [PATCH] fix(test): don't sort import due to zone.js requirements Signed-off-by: Will Soto --- projects/ng-chartist/src/test.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/projects/ng-chartist/src/test.ts b/projects/ng-chartist/src/test.ts index 8b5d2fa8..3979c805 100644 --- a/projects/ng-chartist/src/test.ts +++ b/projects/ng-chartist/src/test.ts @@ -1,12 +1,11 @@ -// This file is required by karma.conf.js and loads recursively all the .spec and framework files - +// organize-imports-ignore +import 'zone.js/dist/zone'; +import 'zone.js/dist/zone-testing'; import { getTestBed } from '@angular/core/testing'; import { BrowserDynamicTestingModule, platformBrowserDynamicTesting, } from '@angular/platform-browser-dynamic/testing'; -import 'zone.js/dist/zone'; -import 'zone.js/dist/zone-testing'; declare const require: any;