hypertest-cloud / hypertest

Plug-and-play library that distributes tests in the cloud to cut runtime to just your slowest test, ensuring cost-effectiveness.
https://hypertest.cloud
1 stars 0 forks source link

Reasearch Playwright reporters #9

Closed blazbla274 closed 6 months ago

marcinlesek commented 6 months ago

Playwright allow us to specify reporters via flag in CLI or in Config file.

npx playwright test --reporter=line
import { defineConfig } from '@playwright/test';

export default defineConfig({
  reporter: 'line',
});

We can also provide array of reporters.

For us, the most important reporters will be:

There is easy way to create custom reporter that will be probably good for us to handle all data.