@itwin/certa 5.0.0-dev.40 → 5.0.0-dev.49
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,6 +1,16 @@
|
|
|
1
1
|
# Change Log - @itwin/certa
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Fri, 24 Jan 2025 08:05:17 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 4.10.6
|
|
6
|
+
Fri, 24 Jan 2025 08:02:40 GMT
|
|
7
|
+
|
|
8
|
+
_Version update only_
|
|
9
|
+
|
|
10
|
+
## 4.10.5
|
|
11
|
+
Tue, 21 Jan 2025 21:56:45 GMT
|
|
12
|
+
|
|
13
|
+
_Version update only_
|
|
4
14
|
|
|
5
15
|
## 4.10.4
|
|
6
16
|
Mon, 13 Jan 2025 14:06:43 GMT
|
|
@@ -100,15 +100,15 @@ declare class MochaSerializer {
|
|
|
100
100
|
emit(name: "require", module: any, file: string, mocha: Mocha): boolean;
|
|
101
101
|
emit(name: "post-require", context: Mocha.MochaGlobals, file: string, mocha: Mocha): boolean;
|
|
102
102
|
emit(name: string, ...args: any[]): boolean;
|
|
103
|
-
off(eventName: string | symbol, listener: (...args: any[]) => void): Mocha.Suite;
|
|
104
|
-
removeAllListeners(
|
|
103
|
+
off<K>(eventName: string | symbol, listener: (...args: any[]) => void): Mocha.Suite;
|
|
104
|
+
removeAllListeners(eventName?: string | symbol | undefined): Mocha.Suite;
|
|
105
105
|
setMaxListeners(n: number): Mocha.Suite;
|
|
106
106
|
getMaxListeners(): number;
|
|
107
|
-
listeners(eventName: string | symbol): Function[];
|
|
108
|
-
rawListeners(eventName: string | symbol): Function[];
|
|
109
|
-
listenerCount(eventName: string | symbol, listener?: Function): number;
|
|
110
|
-
eventNames():
|
|
111
|
-
[EventEmitter.captureRejectionSymbol]
|
|
107
|
+
listeners<K>(eventName: string | symbol): Function[];
|
|
108
|
+
rawListeners<K>(eventName: string | symbol): Function[];
|
|
109
|
+
listenerCount<K>(eventName: string | symbol, listener?: Function | undefined): number;
|
|
110
|
+
eventNames(): (string | symbol)[];
|
|
111
|
+
[EventEmitter.captureRejectionSymbol]?<K>(error: Error, event: string | symbol, ...args: any[]): void;
|
|
112
112
|
$$index: number;
|
|
113
113
|
$$typeName: string;
|
|
114
114
|
} | {
|
|
@@ -145,15 +145,15 @@ declare class MochaSerializer {
|
|
|
145
145
|
prependOnceListener(event: string, listener: (...args: any[]) => void): Mocha.Test;
|
|
146
146
|
emit(name: "error", error: any): boolean;
|
|
147
147
|
emit(name: string, ...args: any[]): boolean;
|
|
148
|
-
off(eventName: string | symbol, listener: (...args: any[]) => void): Mocha.Test;
|
|
149
|
-
removeAllListeners(
|
|
148
|
+
off<K>(eventName: string | symbol, listener: (...args: any[]) => void): Mocha.Test;
|
|
149
|
+
removeAllListeners(eventName?: string | symbol | undefined): Mocha.Test;
|
|
150
150
|
setMaxListeners(n: number): Mocha.Test;
|
|
151
151
|
getMaxListeners(): number;
|
|
152
|
-
listeners(eventName: string | symbol): Function[];
|
|
153
|
-
rawListeners(eventName: string | symbol): Function[];
|
|
154
|
-
listenerCount(eventName: string | symbol, listener?: Function): number;
|
|
155
|
-
eventNames():
|
|
156
|
-
[EventEmitter.captureRejectionSymbol]
|
|
152
|
+
listeners<K>(eventName: string | symbol): Function[];
|
|
153
|
+
rawListeners<K>(eventName: string | symbol): Function[];
|
|
154
|
+
listenerCount<K>(eventName: string | symbol, listener?: Function | undefined): number;
|
|
155
|
+
eventNames(): (string | symbol)[];
|
|
156
|
+
[EventEmitter.captureRejectionSymbol]?<K>(error: Error, event: string | symbol, ...args: any[]): void;
|
|
157
157
|
$$index: number;
|
|
158
158
|
$$typeName: string;
|
|
159
159
|
} | {
|
|
@@ -189,15 +189,15 @@ declare class MochaSerializer {
|
|
|
189
189
|
prependOnceListener(event: string, listener: (...args: any[]) => void): Mocha.Hook;
|
|
190
190
|
emit(name: "error", error: any): boolean;
|
|
191
191
|
emit(name: string, ...args: any[]): boolean;
|
|
192
|
-
off(eventName: string | symbol, listener: (...args: any[]) => void): Mocha.Hook;
|
|
193
|
-
removeAllListeners(
|
|
192
|
+
off<K>(eventName: string | symbol, listener: (...args: any[]) => void): Mocha.Hook;
|
|
193
|
+
removeAllListeners(eventName?: string | symbol | undefined): Mocha.Hook;
|
|
194
194
|
setMaxListeners(n: number): Mocha.Hook;
|
|
195
195
|
getMaxListeners(): number;
|
|
196
|
-
listeners(eventName: string | symbol): Function[];
|
|
197
|
-
rawListeners(eventName: string | symbol): Function[];
|
|
198
|
-
listenerCount(eventName: string | symbol, listener?: Function): number;
|
|
199
|
-
eventNames():
|
|
200
|
-
[EventEmitter.captureRejectionSymbol]
|
|
196
|
+
listeners<K>(eventName: string | symbol): Function[];
|
|
197
|
+
rawListeners<K>(eventName: string | symbol): Function[];
|
|
198
|
+
listenerCount<K>(eventName: string | symbol, listener?: Function | undefined): number;
|
|
199
|
+
eventNames(): (string | symbol)[];
|
|
200
|
+
[EventEmitter.captureRejectionSymbol]?<K>(error: Error, event: string | symbol, ...args: any[]): void;
|
|
201
201
|
$$index: number;
|
|
202
202
|
$$typeName: string;
|
|
203
203
|
} | {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"initSourceMaps.d.ts","sourceRoot":"","sources":["../../src/utils/initSourceMaps.ts"],"names":[],"mappings":"AAOA,OAAO,CAAC,MAAM,gBAAgB,EAAE,GAAG,CAAC;AAKpC,QAAA,MAAM,yBAAyB,
|
|
1
|
+
{"version":3,"file":"initSourceMaps.d.ts","sourceRoot":"","sources":["../../src/utils/initSourceMaps.ts"],"names":[],"mappings":"AAOA,OAAO,CAAC,MAAM,gBAAgB,EAAE,GAAG,CAAC;AAKpC,QAAA,MAAM,yBAAyB,6BAKuzF,OAAQ,QAAQ,uBAL7yF,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itwin/certa",
|
|
3
|
-
"version": "5.0.0-dev.
|
|
3
|
+
"version": "5.0.0-dev.49",
|
|
4
4
|
"description": "A mocha-based integration test runner",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "bin/certa.js",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@types/express": "^4.17.20",
|
|
41
41
|
"@types/lodash": "^4.14.202",
|
|
42
42
|
"@types/mocha": "^10.0.6",
|
|
43
|
-
"@types/node": "~20.
|
|
43
|
+
"@types/node": "~20.17.0",
|
|
44
44
|
"@types/yargs": "17.0.19",
|
|
45
45
|
"electron": "^33.0.0",
|
|
46
46
|
"eslint": "^9.13.0",
|
|
47
47
|
"nyc": "^15.1.0",
|
|
48
48
|
"rimraf": "^3.0.2",
|
|
49
49
|
"typescript": "~5.6.2",
|
|
50
|
-
"@itwin/build-tools": "5.0.0-dev.
|
|
50
|
+
"@itwin/build-tools": "5.0.0-dev.49"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
53
|
"electron": "^33.0.0"
|