Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/reporters/mocha.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,9 @@ module.exports = {
};
```

> [!NOTE]
> Mocha does not expose source line and column information, so each test detail
> records only the file path under `location`.

<!-- links -->
[official documentation for Mocha]: https://mochajs.org/api/mocha#reporter
3 changes: 3 additions & 0 deletions docs/reporters/playwright.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ export default defineConfig({
});
```

> [!NOTE]
> Browsers not supported by the report schema are omitted from the detail.

<!-- links -->
[official documentation for Playwright]: https://playwright.dev/docs/test-reporters
[`merge-reports`]: https://playwright.dev/docs/test-sharding#merge-reports-cli
7 changes: 7 additions & 0 deletions docs/reporters/web-test-runner.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,12 @@ export default {
};
```

> [!NOTE]
> `@web/test-runner` does not report per-test retries or source line and column
> information, so each detail records `0` retries and only the file path under
> `location`. The configured global `testsFinishTimeout` value is used for the
> timeout rather than a per-test timeout. Browsers not supported by the report
> schema are omitted from the detail.

<!-- links -->
[official documentation for `@web/test-runner`]: https://modern-web.dev/docs/test-runner/reporters/overview/
5 changes: 5 additions & 0 deletions docs/reporters/webdriverio.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,10 @@ export const config = {
};
```

> [!NOTE]
> WebdriverIO does not expose source line and column information, so each test
> detail records only the file path under `location`. Browsers not supported by
> the report schema are omitted from the detail.

<!-- links -->
[official documentation for WebdriverIO]: https://webdriver.io/docs/customreporter