@itwin/certa 4.4.0-dev.3 → 4.4.0-dev.5

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.
@@ -115,6 +115,7 @@ declare class MochaSerializer {
115
115
  type: "test";
116
116
  speed?: "slow" | "medium" | "fast" | undefined;
117
117
  err?: Error | undefined;
118
+ id: string;
118
119
  title: string;
119
120
  fn: Mocha.Func | Mocha.AsyncFunc | undefined;
120
121
  body: string;
@@ -124,7 +125,7 @@ declare class MochaSerializer {
124
125
  pending: boolean;
125
126
  duration?: number | undefined;
126
127
  parent?: Mocha.Suite | undefined;
127
- state?: "failed" | "passed" | undefined;
128
+ state?: "failed" | "passed" | "pending" | undefined;
128
129
  timer?: any;
129
130
  ctx?: Mocha.Context | undefined;
130
131
  callback?: Mocha.Done | undefined;
@@ -157,6 +158,7 @@ declare class MochaSerializer {
157
158
  } | {
158
159
  type: "hook";
159
160
  originalTitle?: string | undefined;
161
+ id: string;
160
162
  title: string;
161
163
  fn: Mocha.Func | Mocha.AsyncFunc | undefined;
162
164
  body: string;
@@ -166,7 +168,7 @@ declare class MochaSerializer {
166
168
  pending: boolean;
167
169
  duration?: number | undefined;
168
170
  parent?: Mocha.Suite | undefined;
169
- state?: "failed" | "passed" | undefined;
171
+ state?: "failed" | "passed" | "pending" | undefined;
170
172
  timer?: any;
171
173
  ctx?: Mocha.Context | undefined;
172
174
  callback?: Mocha.Done | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"MochaSerializer.d.ts","sourceRoot":"","sources":["../../../src/runners/chrome/MochaSerializer.ts"],"names":[],"mappings":";AAOA,KAAK,QAAQ,GAAG,KAAK,CAAC,QAAQ,GAAG,KAAK,CAAC,KAAK,CAAC;AAE7C;;;;;;;;;;;GAWG;AACH,cAAM,eAAe;IACnB,OAAO,CAAC,MAAM,CAAC,SAAS,CAAkB;WAE5B,YAAY,CAAC,GAAG,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAuB5D;;;;;;OAMG;WACW,SAAS,CAAC,IAAI,EAAE,GAAG;IAiBjC;;;OAGG;WACW,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG;CAsB5C"}
1
+ {"version":3,"file":"MochaSerializer.d.ts","sourceRoot":"","sources":["../../../src/runners/chrome/MochaSerializer.ts"],"names":[],"mappings":";AAOA,KAAK,QAAQ,GAAG,KAAK,CAAC,QAAQ,GAAG,KAAK,CAAC,KAAK,CAAC;AAE7C;;;;;;;;;;;GAWG;AACH,cAAM,eAAe;IACnB,OAAO,CAAC,MAAM,CAAC,SAAS,CAAkB;WAE5B,YAAY,CAAC,GAAG,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAuB5D;;;;;;OAMG;WACW,SAAS,CAAC,IAAI,EAAE,GAAG;IAiBjC;;;OAGG;WACW,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG;CAsB5C"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/certa",
3
- "version": "4.4.0-dev.3",
3
+ "version": "4.4.0-dev.5",
4
4
  "description": "A mocha-based integration test runner",
5
5
  "license": "MIT",
6
6
  "main": "bin/certa.js",
@@ -25,10 +25,10 @@
25
25
  "dependencies": {
26
26
  "canonical-path": "^1.0.0",
27
27
  "detect-port": "~1.3.0",
28
- "express": "^4.16.3",
28
+ "express": "^4.18.2",
29
29
  "jsonc-parser": "~2.0.3",
30
- "lodash": "^4.17.10",
31
- "mocha": "^10.0.0",
30
+ "lodash": "^4.17.21",
31
+ "mocha": "^10.2.0",
32
32
  "playwright": "~1.35.1",
33
33
  "source-map-support": "^0.5.6",
34
34
  "yargs": "^17.4.0"
@@ -37,9 +37,9 @@
37
37
  "@itwin/eslint-plugin": "4.0.0-dev.44",
38
38
  "@types/chai": "4.3.1",
39
39
  "@types/detect-port": "~1.1.0",
40
- "@types/express": "^4.16.1",
41
- "@types/lodash": "^4.14.0",
42
- "@types/mocha": "^8.2.2",
40
+ "@types/express": "^4.17.20",
41
+ "@types/lodash": "^4.14.202",
42
+ "@types/mocha": "^10.0.6",
43
43
  "@types/node": "~18.16.20",
44
44
  "@types/yargs": "17.0.19",
45
45
  "electron": "^28.0.0",
@@ -47,7 +47,7 @@
47
47
  "nyc": "^15.1.0",
48
48
  "rimraf": "^3.0.2",
49
49
  "typescript": "~5.0.2",
50
- "@itwin/build-tools": "4.4.0-dev.3"
50
+ "@itwin/build-tools": "4.4.0-dev.5"
51
51
  },
52
52
  "peerDependencies": {
53
53
  "electron": ">=23.0.0 <29.0.0"