@bigbinary/neeto-playwright-reporter 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -0
- package/index.cjs.js +18501 -0
- package/index.cjs.js.map +1 -0
- package/index.d.ts +8 -0
- package/index.js +18484 -0
- package/index.js.map +1 -0
- package/package.json +99 -0
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# neeto-playwright-reporter
|
|
2
|
+
|
|
3
|
+
The custom playwright reporter for neeto-playwright-dashboard.
|
|
4
|
+
|
|
5
|
+
## Installation Instructions
|
|
6
|
+
|
|
7
|
+
Install from npm:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
yarn add "@bigbinary/neeto-playwright-reporter@latest"
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
You can import the reporter from `@bigbinary/neeto-playwright-reporter` and use
|
|
16
|
+
it in the Playwright configuration.
|
|
17
|
+
|
|
18
|
+
```ts
|
|
19
|
+
import { defineConfig } from "@playwright/test";
|
|
20
|
+
|
|
21
|
+
export default defineConfig({
|
|
22
|
+
reporter: "@bigbinary/neeto-playwright-reporter",
|
|
23
|
+
});
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Other references
|
|
27
|
+
|
|
28
|
+
- [Development instructions](./docs/general/development-instructions.md)
|
|
29
|
+
- [Building and releasing](./docs/general/building-and-releasing.md)
|