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 () => {
31
31
// 1. Trigger Test
32
32
const envString = ENVIRONMENT ? `&enviroment=${ ENVIRONMENT } ` : '' ;
33
33
const testTrigger = ( await axios . get ( `${ API_URL } /test/${ TEST_ID } /execute?location=${ LOCATION } ${ envString } ` ) ) . data ;
34
+ const reportUrl = testTrigger . reportUrl ;
34
35
console . log ( testTrigger . message ) ;
36
+ console . log ( "---->" + testTrigger . reportUrl ) ;
35
37
const executionId = testTrigger . executionId ;
36
38
37
39
// 2. Perform initial wait -- this is to avoid multiple checks while test is ramping up
@@ -52,7 +54,7 @@ core.group('Execute Test', async () => {
52
54
// 3. Set Response Data
53
55
core . setOutput ( "time" , testResult . executionTime ) ;
54
56
core . setOutput ( "succesful" , testResult . succesful ) ;
55
- core . setOutput ( "reportUrl" , testTrigger . reportUrl ) ;
57
+ core . setOutput ( "reportUrl" , reportUrl ) ;
56
58
57
59
// 4. Fail action if test failed
58
60
if ( ! testResult . succesful ) {
You can’t perform that action at this time.
0 commit comments