@wayward/types 2.14.0-beta.dev.20241123.1 → 2.14.0-beta.dev.20241125.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.
|
@@ -132,7 +132,7 @@ export declare class TestRunContext extends BaseContext {
|
|
|
132
132
|
private _output;
|
|
133
133
|
private readonly _errors;
|
|
134
134
|
private readonly _attachments;
|
|
135
|
-
|
|
135
|
+
protected readonly _data: Map<string, unknown>;
|
|
136
136
|
private readonly startTime;
|
|
137
137
|
private endTime;
|
|
138
138
|
private duration;
|
|
@@ -197,7 +197,7 @@ export declare class TestRunContext extends BaseContext {
|
|
|
197
197
|
getData<T = unknown>(key: string): T;
|
|
198
198
|
tryGetData<T = unknown>(key: string): T | undefined;
|
|
199
199
|
setData<T = unknown>(key: string, value: T): T;
|
|
200
|
-
start(): void;
|
|
200
|
+
start(suiteRunContext: TestRunContext): void;
|
|
201
201
|
/**
|
|
202
202
|
* Mark the context as being completed (finished running)
|
|
203
203
|
*/
|
package/package.json
CHANGED