@bigbinary/neeto-playwright-commons 1.17.3 → 1.17.5
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 +11 -4
- package/index.cjs.js +2964 -2675
- package/index.cjs.js.map +1 -1
- package/index.d.ts +14 -1
- package/index.js +2964 -2676
- package/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,17 +3,24 @@
|
|
|
3
3
|
A library that packages common boilerplate Playwright code necessary for all
|
|
4
4
|
neeto products.
|
|
5
5
|
|
|
6
|
-
##
|
|
7
|
-
|
|
8
|
-
Install from npm:
|
|
6
|
+
## Installing neeto-playwright-commons in a Playwright Project
|
|
9
7
|
|
|
8
|
+
First, navigate to the Playwright test directory:
|
|
9
|
+
```bash
|
|
10
|
+
cd playwright-tests
|
|
11
|
+
```
|
|
12
|
+
Then, install the package using Yarn:
|
|
10
13
|
```bash
|
|
11
14
|
yarn add "@bigbinary/neeto-playwright-commons@latest"
|
|
12
15
|
```
|
|
16
|
+
If `neeto-playwright-commons` is already listed in `package.json` of Playwright project, simply install dependencies with:
|
|
17
|
+
```bash
|
|
18
|
+
yarn install
|
|
19
|
+
```
|
|
13
20
|
|
|
14
21
|
## Dependencies
|
|
15
22
|
|
|
16
|
-
**
|
|
23
|
+
**neeto-playwright-commons** has some peer dependencies which can be installed
|
|
17
24
|
using the commands listed below:
|
|
18
25
|
|
|
19
26
|
### `neeto-cist`
|