testaro 60.8.4 → 60.10.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 +1 -2
- package/dist/nameComputation.js +1087 -0
- package/package.json +6 -1
- package/procs/doTestAct.js +4 -10
- package/run.js +25 -14
- package/src/nameComputation.js +5 -0
- package/testaro/autocomplete.js +62 -46
- package/tests/testaro.js +2 -0
package/README.md
CHANGED
|
@@ -120,8 +120,7 @@ After that, you can update Testaro after any version change:
|
|
|
120
120
|
cd testaro
|
|
121
121
|
git checkout package-lock.json
|
|
122
122
|
git pull
|
|
123
|
-
npm
|
|
124
|
-
npx playwright install
|
|
123
|
+
npm run deps
|
|
125
124
|
```
|
|
126
125
|
|
|
127
126
|
Once it is installed as an application, you can use its features with a terminal interface by executing the “By a user” statements below.
|