@wayward/types 2.13.0-beta.dev.20230317.1 → 2.13.0-beta.dev.20230319.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.
|
@@ -116,6 +116,11 @@ export declare class TestRunContext extends BaseContext {
|
|
|
116
116
|
readonly title: string;
|
|
117
117
|
readonly titleTree: string[];
|
|
118
118
|
readonly fullTitle: string;
|
|
119
|
+
/**
|
|
120
|
+
* Signal that's fired when the test has an error / times out.
|
|
121
|
+
* This is not fired when the test is successful.
|
|
122
|
+
*/
|
|
123
|
+
readonly abortSignal: AbortSignal;
|
|
119
124
|
readonly suites: TestRunContext[];
|
|
120
125
|
readonly tests: TestRunContext[];
|
|
121
126
|
private _output;
|
|
@@ -124,6 +129,7 @@ export declare class TestRunContext extends BaseContext {
|
|
|
124
129
|
private readonly startTime;
|
|
125
130
|
private endTime;
|
|
126
131
|
private duration;
|
|
132
|
+
private readonly abortController;
|
|
127
133
|
constructor(runContext: IRunContext, suiteContext: TestSetupContext, test?: ITest);
|
|
128
134
|
/**
|
|
129
135
|
* Check if every test / suite under this tree has succedded
|
package/package.json
CHANGED