@mobilewright/test 0.0.30 → 0.0.31
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 +10 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -390,6 +390,16 @@ Need real phones in the cloud? [mobile-use.com](https://mobile-use.com) gives yo
|
|
|
390
390
|
|
|
391
391
|
mobile-use.com is the only device cloud with native Mobilewright support.
|
|
392
392
|
|
|
393
|
+
## Telemetry
|
|
394
|
+
|
|
395
|
+
Mobilewright collects anonymous usage telemetry via PostHog. To disable it, set the `MOBILEWRIGHT_DISABLE_TELEMETRY` environment variable:
|
|
396
|
+
|
|
397
|
+
```bash
|
|
398
|
+
MOBILEWRIGHT_DISABLE_TELEMETRY=1 npx mobilewright test
|
|
399
|
+
```
|
|
400
|
+
|
|
401
|
+
When telemetry is enabled, a random identifier is generated and stored in `~/.config/mobilenext/mobilewright/config.json`. No personal information or test data is ever collected.
|
|
402
|
+
|
|
393
403
|
## Contributing
|
|
394
404
|
|
|
395
405
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mobilewright/test",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.31",
|
|
4
4
|
"description": "Test fixtures for Mobilewright",
|
|
5
5
|
"homepage": "https://mobilewright.dev",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"dist"
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@mobilewright/core": "^0.0.
|
|
33
|
-
"@mobilewright/protocol": "^0.0.
|
|
32
|
+
"@mobilewright/core": "^0.0.31",
|
|
33
|
+
"@mobilewright/protocol": "^0.0.31",
|
|
34
34
|
"@playwright/test": "1.58.2",
|
|
35
35
|
"debug": "^4.4.3",
|
|
36
|
-
"mobilewright": "^0.0.
|
|
36
|
+
"mobilewright": "^0.0.31"
|
|
37
37
|
}
|
|
38
38
|
}
|