browsermation 0.0.56
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 +25 -0
- package/dist/bin/cli.d.ts +2 -0
- package/dist/bin/cli.js +46925 -0
- package/dist/core.d.ts +8 -0
- package/dist/defineConfig.d.ts +2 -0
- package/dist/esbuild.d.ts +1 -0
- package/dist/http.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +796 -0
- package/dist/playwright.d.ts +3 -0
- package/dist/reporter/reporter.d.ts +11 -0
- package/dist/reporter.js +128 -0
- package/dist/test.d.ts +1 -0
- package/dist/tunnel.d.ts +5 -0
- package/dist/zip.d.ts +6 -0
- package/package.json +68 -0
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# browsermation
|
|
2
|
+
|
|
3
|
+
This is the PUBLIC NPM package for Browsermation's testing utilities.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
To install the package, run:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install browsermation
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
See also [Browsermation](https://www.npmjs.com/package/browsermation) for the test package.
|
|
14
|
+
|
|
15
|
+
You can use via the CLI
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npx browsermation test
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Or use it as Playwright reporter
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
npx @playwright/test test --reporter=browsermation/reporter
|
|
25
|
+
```
|