You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ jobs:
20
20
location: 'AWS-US-WEST-2'
21
21
environment: 'ENV_ID(OPTIONAL)'
22
22
- name: Show Results
23
-
run: echo "The test took ${{ steps.tstExec.outputs.time }}ms to run"; echo "The test result was ${{ steps.tstExec.outputs.successful }}"; echo "View Report - {{ steps.tstExec.outputs.reportUrl }}"
23
+
run: echo "The test took ${{ steps.tstExec.outputs.time }}ms to run"; echo "The test result was ${{ steps.tstExec.outputs.computedStatus }}"; echo "View Report - ${{ steps.tstExec.outputs.reportUrl }}"
24
24
```
25
25
26
26
## Inputs
@@ -47,13 +47,16 @@ The environment you want to run the test in. If you don't use environment omit t
47
47
## Outputs
48
48
49
49
### `time`
50
-
The time it took the test to execute, in miliseconds (1000ms=s)
50
+
The time it took the test to execute, in milliseconds (1000ms=s)
51
51
52
52
### `successful`
53
53
True/false based on the result of the test execution
54
54
55
55
### `reportUrl`
56
-
URL of a human readable report of the test execution
56
+
URL of a human-readable report of the test execution
57
+
58
+
### `computedStatus`
59
+
A human-readable test status that matches the status values on the test dashboard in the UI
57
60
58
61
## Help
59
62
For any help using this integration, reach out to `[email protected]`. You can also see RapidAPI Testing Guide in our [Help Center](https://docs.rapidapi.com/docs/creating-test-flows).
0 commit comments