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
Test processing might fail if any of your tests write anything on standard output.
291
+
Mocha, unfortunately, doesn't have the option to store `json` output directly to the file, and we have to rely on redirecting its standard output.
292
+
There is a work in progress to fix it: [mocha#4607](https://github.com/mochajs/mocha/pull/4607)
293
+
</details>
294
+
275
295
## GitHub limitations
276
296
277
-
Unfortunately there are some known issues and limitations caused by GitHub API:
297
+
Unfortunately, there are some known issues and limitations caused by GitHub API:
278
298
279
299
- Test report (i.e. Check Run summary) is markdown text. No custom styling or HTML is possible.
280
300
- Maximum report size is 65535 bytes. Input parameters `list-suites` and `list-tests` will be automatically adjusted if max size is exceeded.
281
-
- Test report can't reference any additional files (e.g. screenshots). You can use `actions/upload-artifact@v2` to upload them and inspect manually.
282
-
- Check Runs are created for specific commit SHA. it's not possible to specify under which workflow test report should belong if there are more
283
-
workflows running for same SHA. Thanks to this GitHub "feature" it's possible your test report will appear in unexpected place in GitHub UI.
284
-
For more information see [#67](https://github.com/dorny/test-reporter/issues/67).
301
+
- Test report can't reference any additional files (e.g. screenshots). You can use `actions/upload-artifact@v2` to upload them and inspect them manually.
302
+
- Check Runs are created for specific commit SHA. It's not possible to specify under which workflow test report should belong if more
303
+
workflows are running for the same SHA. Thanks to this GitHub "feature" it's possible your test report will appear in an unexpected place in GitHub UI.
304
+
For more information, see [#67](https://github.com/dorny/test-reporter/issues/67).
285
305
286
306
## See also
287
-
- [paths-filter](https://github.com/dorny/paths-filter) - Conditionally run actions based on files modified by PR, feature branch or pushed commits
307
+
- [paths-filter](https://github.com/dorny/paths-filter) - Conditionally run actions based on files modified by PR, feature branch, or pushed commits
0 commit comments