@sentinelqa/playwright-reporter 0.1.38 → 0.1.40
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 -1
- package/dist/reporter.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ Works with no account or API key required.
|
|
|
17
17
|
|
|
18
18
|
Use it to get a shareable hosted run link from CI or local development, then upgrade to Sentinel Cloud for richer history and intelligence.
|
|
19
19
|
|
|
20
|
-

|
|
21
21
|

|
|
22
22
|
|
|
23
23
|
## Features
|
package/dist/reporter.js
CHANGED
|
@@ -74,7 +74,8 @@ class SentinelReporter {
|
|
|
74
74
|
suppressSummaryJson: true,
|
|
75
75
|
env: {
|
|
76
76
|
SENTINEL_REPORTER_PROJECT: this.options.project || undefined,
|
|
77
|
-
SENTINEL_REPORTER_SILENT: "1"
|
|
77
|
+
SENTINEL_REPORTER_SILENT: "1",
|
|
78
|
+
SENTINEL_UPLOAD_LOCAL: usingImplicitLocalPublicMode ? "1" : process.env.SENTINEL_UPLOAD_LOCAL
|
|
78
79
|
}
|
|
79
80
|
});
|
|
80
81
|
if (upload.exitCode !== 0) {
|