File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ core.group('Execute Test', async () => {
3434 const reportUrl = testTrigger . reportUrl ;
3535 console . log ( testTrigger . message ) ;
3636 console . log ( "---->" + testTrigger . reportUrl ) ;
37+ core . setOutput ( "reportUrl" , reportUrl ) ;
3738 const executionId = testTrigger . executionId ;
3839
3940 // 2. Perform initial wait -- this is to avoid multiple checks while test is ramping up
@@ -54,7 +55,7 @@ core.group('Execute Test', async () => {
5455 // 3. Set Response Data
5556 core . setOutput ( "time" , testResult . executionTime ) ;
5657 core . setOutput ( "succesful" , testResult . succesful ) ;
57- core . setOutput ( "reportUrl" , reportUrl ) ;
58+ // core.setOutput("reportUrl", reportUrl);
5859
5960 // 4. Fail action if test failed
6061 if ( ! testResult . succesful ) {
You can’t perform that action at this time.
0 commit comments