@empiricalrun/playwright-utils 0.2.2 → 0.3.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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @empiricalrun/playwright-utils
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 778440c: feat: increase captured video resolution and remove viewport config
8
+
9
+ ## 0.2.3
10
+
11
+ ### Patch Changes
12
+
13
+ - 2683e54: feat: add list reporter to get real-time reporting on CI terminal
14
+
3
15
  ## 0.2.2
4
16
 
5
17
  ### Patch Changes
@@ -1 +1 @@
1
- {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AAE7D,eAAO,MAAM,UAAU,EAAE,oBAiBxB,CAAC"}
1
+ {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,oBAAoB,EAAE,MAAM,kBAAkB,CAAC;AAE7D,eAAO,MAAM,UAAU,EAAE,oBAuBxB,CAAC"}
package/dist/config.js CHANGED
@@ -7,11 +7,17 @@ exports.baseConfig = {
7
7
  forbidOnly: false,
8
8
  retries: process.env.CI ? 2 : 0,
9
9
  workers: undefined,
10
- reporter: [["html"], ["json", { outputFile: "test-results/summary.json" }]],
10
+ reporter: [
11
+ ["html"],
12
+ ["json", { outputFile: "test-results/summary.json" }],
13
+ ["list"], // For real-time reporting on CI terminal (vs. the default "dot" reporter)
14
+ ],
11
15
  use: {
12
16
  trace: "retain-on-failure",
13
- video: "on",
14
- viewport: { width: 1366, height: 768 },
17
+ video: {
18
+ mode: "on",
19
+ size: { width: 1280, height: 720 },
20
+ },
15
21
  actionTimeout: 15000,
16
22
  },
17
23
  expect: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@empiricalrun/playwright-utils",
3
- "version": "0.2.2",
3
+ "version": "0.3.0",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"