docs: reference to external allure reporter (#12646)

This commit is contained in:
Max Schmitt 2022-03-10 18:01:42 +01:00 committed by GitHub
parent e270adf437
commit 49fd77d9af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -502,15 +502,17 @@ export default config;
## Third party showcase ## Third party showcase
- Allure reporter ### Allure reporter
```bash ```bash
# Install # Install
npm i -D allure-playwright npm i -D allure-playwright
# Run tests # Run tests
npx playwright test --reporter=line,allure-playwright npx playwright test --reporter=line,allure-playwright
# Generate report # Generate report
allure generate ./allure-results --clean && allure open ./allure-report allure generate ./allure-results --clean && allure open ./allure-report
``` ```
See [here](https://www.npmjs.com/package/allure-playwright) for more information.