remove import in order to fix cypress 25/108725/1
authorEinat Vinouze <einat.vinouze@intl.att.com>
Wed, 3 Jun 2020 09:18:26 +0000 (12:18 +0300)
committerEinat Vinouze <einat.vinouze@intl.att.com>
Wed, 3 Jun 2020 09:19:39 +0000 (12:19 +0300)
Issue-ID: VID-821
Signed-off-by: Einat Vinouze <einat.vinouze@intl.att.com>
Change-Id: I657f29a665ccf5013a369e23b0aced442b9a415b

vid-webpack-master/cypress/integration/iFrames/instantiationStatus.e2e.ts

index fbd6d8b..6fdbc9d 100644 (file)
@@ -3,17 +3,16 @@
 
 import {JsonBuilder} from '../../support/jsonBuilders/jsonBuilder';
 import {AsyncInstantiationModel} from '../../support/jsonBuilders/models/asyncInstantiation.model';
-import {
-  COMPLETED_WITH_ERRORS,
-  INPROGRESS,
-  PAUSE,
-  PAUSE_UPON_COMPLETION,
-  PENDING,
-  STOPPED,
-  SUCCESS_CIRCLE,
-  UNKNOWN,
-  X_O
-} from "../../../src/app/instantiationStatus/instantiationStatus.component.service";
+
+export let PENDING : string = "pending";
+export let INPROGRESS : string = "in_progress";
+export let PAUSE : string = "pause";
+export let X_O : string = "x-circle-o";
+export let SUCCESS_CIRCLE : string = "success-circle-o";
+export let STOPPED : string = "stop";
+export let COMPLETED_WITH_ERRORS : string = "success_with_warning";
+export let PAUSE_UPON_COMPLETION : string = "stopped-upon-success";
+export let UNKNOWN : string = "question-mark-circle-o";
 
 describe('Instantiation status', function () {
   var jsonBuilderInstantiationBuilder : JsonBuilder<AsyncInstantiationModel> = new JsonBuilder<AsyncInstantiationModel>();