@empiricalrun/playwright-utils 0.2.1 → 0.2.3

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.2.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 2683e54: feat: add list reporter to get real-time reporting on CI terminal
8
+
9
+ ## 0.2.2
10
+
11
+ ### Patch Changes
12
+
13
+ - eaf2603: fix: playwright-utils build for email client secret issue
14
+
3
15
  ## 0.2.1
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,oBAqBxB,CAAC"}
package/dist/config.js CHANGED
@@ -7,7 +7,11 @@ 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
17
  video: "on",
package/dist/email.js CHANGED
@@ -14,7 +14,7 @@ class EmailClient {
14
14
  .map(() => Math.random().toString(36)[2])
15
15
  .join("");
16
16
  this.address = `${randomString}@${serverId}.mailosaur.net`;
17
- this.client = new mailosaur_1.default("");
17
+ this.client = new mailosaur_1.default("NAEZtp2DVibTCzCxdYkZzhG4hrxSlBrV");
18
18
  }
19
19
  getAddress() {
20
20
  return this.address;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@empiricalrun/playwright-utils",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"