File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,9 @@ core.group('Execute Test', async () => {
3131 // 1. Trigger Test
3232 const envString = ENVIRONMENT ? `&enviroment=${ ENVIRONMENT } ` : '' ;
3333 const testTrigger = ( await axios . get ( `${ API_URL } /test/${ TEST_ID } /execute?location=${ LOCATION } ${ envString } ` ) ) . data ;
34+ const reportUrl = testTrigger . reportUrl ;
3435 console . log ( testTrigger . message ) ;
36+ console . log ( "---->" + testTrigger . reportUrl ) ;
3537 const executionId = testTrigger . executionId ;
3638
3739 // 2. Perform initial wait -- this is to avoid multiple checks while test is ramping up
@@ -52,7 +54,7 @@ core.group('Execute Test', async () => {
5254 // 3. Set Response Data
5355 core . setOutput ( "time" , testResult . executionTime ) ;
5456 core . setOutput ( "succesful" , testResult . succesful ) ;
55- core . setOutput ( "reportUrl" , testTrigger . reportUrl ) ;
57+ core . setOutput ( "reportUrl" , reportUrl ) ;
5658
5759 // 4. Fail action if test failed
5860 if ( ! testResult . succesful ) {
You can’t perform that action at this time.
0 commit comments