@@ -60,40 +60,47 @@ function testRun(jsonScript) {
6060 if ( test . type === "prerequisites" ) {
6161 //route for prerequisites tests
6262
63- describe ( `Test${ test . id } - ${ test . name } -> ` , function ( ) {
63+ describe ( `Test${ test . id } - ${ test . name } | ` , function ( ) {
6464 this . timeout ( 20000 ) ;
6565
66- runCLIPrerequisitesTest ( pathToEIMCLI ) ;
66+ runCLIPrerequisitesTest ( { id : ` ${ test . id } 1` , pathToEim : pathToEIMCLI } ) ;
6767 } ) ;
6868 } else if ( test . type === "arguments" ) {
6969 //routine for arguments tests
7070
71- describe ( `Test${ test . id } - ${ test . name } -> ` , function ( ) {
71+ describe ( `Test${ test . id } - ${ test . name } | ` , function ( ) {
7272 this . timeout ( 20000 ) ;
7373
74- runCLIArgumentsTest ( pathToEIMCLI , EIMCLIVersion ) ;
74+ runCLIArgumentsTest ( {
75+ id : `${ test . id } 1` ,
76+ pathToEim : pathToEIMCLI ,
77+ eimVersion : EIMCLIVersion ,
78+ } ) ;
7579 } ) ;
7680 } else if ( test . type === "default" ) {
7781 //routine for default installation tests
7882
7983 const deleteAfterTest = test . deleteAfterTest ?? true ;
8084 const testProxyMode = test . testProxyMode ?? false ;
8185
82- describe ( `Test${ test . id } - ${ test . name } -> ` , function ( ) {
86+ describe ( `Test${ test . id } - ${ test . name } | ` , function ( ) {
8387 this . timeout ( 6000000 ) ;
8488
8589 runCLIWizardInstallTest ( {
90+ id : `${ test . id } 1` ,
8691 pathToEim : pathToEIMCLI ,
8792 testProxyMode,
8893 } ) ;
8994
9095 runInstallVerification ( {
96+ id : `${ test . id } 2` ,
9197 installFolder : INSTALLFOLDER ,
9298 idfList : [ IDFDefaultVersion ] ,
9399 toolsFolder : TOOLSFOLDER ,
94100 } ) ;
95101
96102 runCleanUp ( {
103+ id : `${ test . id } 3` ,
97104 installFolder : INSTALLFOLDER ,
98105 toolsFolder : TOOLSFOLDER ,
99106 deleteAfterTest,
@@ -145,19 +152,22 @@ function testRun(jsonScript) {
145152 this . timeout ( 6000000 ) ;
146153
147154 runCLICustomInstallTest ( {
155+ id : `${ test . id } 1` ,
148156 pathToEim : pathToEIMCLI ,
149157 args : installArgs ,
150158 testProxyMode,
151159 } ) ;
152160
153161 runInstallVerification ( {
162+ id : `${ test . id } 2` ,
154163 installFolder,
155164 idfList : idfUpdatedList ,
156165 targetList,
157166 toolsFolder : TOOLSFOLDER ,
158167 } ) ;
159168
160169 runCleanUp ( {
170+ id : `${ test . id } 3` ,
161171 installFolder,
162172 toolsFolder : TOOLSFOLDER ,
163173 deleteAfterTest,
@@ -181,6 +191,7 @@ function testRun(jsonScript) {
181191 this . timeout ( 60000 ) ;
182192
183193 runVersionManagementTest ( {
194+ id : `${ test . id } 1` ,
184195 pathToEim : pathToEIMCLI ,
185196 idfList : idfUpdatedList ,
186197 installFolder,
@@ -194,29 +205,22 @@ function testRun(jsonScript) {
194205 describe ( `Test${ test . id } - ${ test . name } ->` , async function ( ) {
195206 this . timeout ( 6000000 ) ;
196207
197- const pathToOfflineArchive = await downloadOfflineArchive ( {
198- idfVersion : IDFDefaultVersion ,
199- } ) ;
200-
201- const offlineArg = [
202- `${
203- runInDebug ? "-vvv " : ""
204- } --use-local-archive "${ pathToOfflineArchive } "`,
205- ] ;
206-
207208 runCLICustomInstallTest ( {
209+ id : `${ test . id } 1` ,
208210 pathToEim : pathToEIMCLI ,
209- args : offlineArg ,
211+ offlineIDFVersion : IDFDefaultVersion ,
210212 testProxyMode,
211213 } ) ;
212214
213215 runInstallVerification ( {
216+ id : `${ test . id } 2` ,
214217 installFolder : INSTALLFOLDER ,
215218 idfList : [ IDFDefaultVersion ] ,
216219 toolsFolder : TOOLSFOLDER ,
217220 } ) ;
218221
219222 runCleanUp ( {
223+ id : `${ test . id } 3` ,
220224 installFolder : INSTALLFOLDER ,
221225 toolsFolder : TOOLSFOLDER ,
222226 deleteAfterTest,
0 commit comments