@qualflare/playwright 0.4.0 → 0.4.1
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 +6 -0
- package/dist/reporter/index.cjs +1 -1
- package/dist/reporter/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -58,6 +58,12 @@ npx playwright test
|
|
|
58
58
|
qf <your-project-identifier> collect ./qualflare-results
|
|
59
59
|
```
|
|
60
60
|
|
|
61
|
+
> **Videos and traces are opt-in from `@qualflare/cli` v0.1.20.** `collect` uploads the report
|
|
62
|
+
> itself always, but a heavy artifact only when asked: `--upload-artifacts=video`, `=trace`, or
|
|
63
|
+
> `=video,trace` (or `QF_UPLOAD_ARTIFACTS`). Earlier CLI versions uploaded every video
|
|
64
|
+
> automatically. Nothing is dropped silently — `collect` prints how many artifacts it skipped and
|
|
65
|
+
> the exact flag to include them.
|
|
66
|
+
|
|
61
67
|
### Sharded CI
|
|
62
68
|
|
|
63
69
|
Point every shard at the **same** `outputDir` and collect once at the end. Each process writes its
|
package/dist/reporter/index.cjs
CHANGED
|
@@ -861,7 +861,7 @@ function buildCase(test, config, attachmentsByResult, budget) {
|
|
|
861
861
|
var os = __toESM(require("os"), 1);
|
|
862
862
|
|
|
863
863
|
// src/config/version.ts
|
|
864
|
-
var PACKAGE_VERSION = "0.4.
|
|
864
|
+
var PACKAGE_VERSION = "0.4.1";
|
|
865
865
|
|
|
866
866
|
// src/reporter/collect-builder.ts
|
|
867
867
|
function resolveOs(config) {
|
package/dist/reporter/index.js
CHANGED
|
@@ -825,7 +825,7 @@ function buildCase(test, config, attachmentsByResult, budget) {
|
|
|
825
825
|
import * as os from "os";
|
|
826
826
|
|
|
827
827
|
// src/config/version.ts
|
|
828
|
-
var PACKAGE_VERSION = "0.4.
|
|
828
|
+
var PACKAGE_VERSION = "0.4.1";
|
|
829
829
|
|
|
830
830
|
// src/reporter/collect-builder.ts
|
|
831
831
|
function resolveOs(config) {
|