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 () => {
34
34
const reportUrl = testTrigger . reportUrl ;
35
35
console . log ( testTrigger . message ) ;
36
36
console . log ( "---->" + testTrigger . reportUrl ) ;
37
+ core . setOutput ( "reportUrl" , reportUrl ) ;
37
38
const executionId = testTrigger . executionId ;
38
39
39
40
// 2. Perform initial wait -- this is to avoid multiple checks while test is ramping up
@@ -54,7 +55,7 @@ core.group('Execute Test', async () => {
54
55
// 3. Set Response Data
55
56
core . setOutput ( "time" , testResult . executionTime ) ;
56
57
core . setOutput ( "succesful" , testResult . succesful ) ;
57
- core . setOutput ( "reportUrl" , reportUrl ) ;
58
+ // core.setOutput("reportUrl", reportUrl);
58
59
59
60
// 4. Fail action if test failed
60
61
if ( ! testResult . succesful ) {
You can’t perform that action at this time.
0 commit comments