Skip to content

Commit cde7319

Browse files
committed
attempt fix
1 parent fc8695f commit cde7319

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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) {

0 commit comments

Comments
 (0)