@malcherf/github-actions-reporter
v1.0.3
Published
GitHub Actions reporter for Playwright
Downloads
47
Maintainers
Readme
GitHub Actions Reporter for Playwright
This action reports test results from Playwright to GitHub summaries.
Installation
Install from npm:
npm install @malcherf/github-actions-reporter
Usage
You can configure the reporter by adding it to the playwright.config.js
file:
import { defineConfig } from "@playwright/test";
export default defineConfig({
reporter: [["list"], ["@malcherf/github-actions-reporter"]],
});
More information on how to use reporters can be found in the Playwright documentation.
Configuration
The reporter supports the following configuration options:
| Option | Description | Default |
| ---------- | ------------------------------------------------------- | -------------- |
| title | Title of the report | Test results
|
| useDetails | Use details in summary which creates expandable content | false
|
| showError | Show error message in summary | false
|
To use these option, you can update the reporter configuration:
import { defineConfig } from "@playwright/test";
export default defineConfig({
reporter: [
[
"@malcherf/github-actions-reporter",
{
title: "My custom title",
useDetails: true,
showError: true,
},
],
],
});