@bigbinary/neeto-playwright-commons 1.1.0
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 +17 -0
- package/index.cjs.js +7062 -0
- package/index.cjs.js.map +1 -0
- package/index.d.ts +103 -0
- package/index.js +7006 -0
- package/index.js.map +1 -0
- package/package.json +182 -0
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# neeto-playwright-commons
|
|
2
|
+
|
|
3
|
+
A library that packages common boilerplate Playwright code necessary for all
|
|
4
|
+
neeto products.
|
|
5
|
+
|
|
6
|
+
## Installation Instructions
|
|
7
|
+
|
|
8
|
+
Install from npm:
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
yarn add "@bigbinary/neeto-playwright-commons@latest"
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Other references
|
|
15
|
+
|
|
16
|
+
- [Development instructions](./docs/general/development-instructions.md)
|
|
17
|
+
- [Building and releasing](./docs/general/building-and-releasing.md)
|