@sprucelabs/test-utils 5.5.8 → 5.5.9
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.
@@ -24,7 +24,7 @@ export default class SpruceTestResolver {
|
|
24
24
|
static getActiveTest(): any;
|
25
25
|
static reset(): void;
|
26
26
|
static onWillCallBeforeAll(cb: TestLifecycleListener): void;
|
27
|
-
static
|
27
|
+
static onDidCallBeforeAll(cb: TestLifecycleListener): void;
|
28
28
|
static onWillCallBeforeEach(cb: TestLifecycleListener): void;
|
29
29
|
static onDidCallBeforeEach(cb: TestLifecycleListener): void;
|
30
30
|
static onWillCallAfterEach(cb: TestLifecycleListener): void;
|
@@ -70,7 +70,7 @@ class SpruceTestResolver {
|
|
70
70
|
static onWillCallBeforeAll(cb) {
|
71
71
|
TestLifecycleListeners.willBeforeAllListeners.push(cb);
|
72
72
|
}
|
73
|
-
static
|
73
|
+
static onDidCallBeforeAll(cb) {
|
74
74
|
TestLifecycleListeners.didBeforeAllListeners.push(cb);
|
75
75
|
}
|
76
76
|
static onWillCallBeforeEach(cb) {
|
@@ -24,7 +24,7 @@ export default class SpruceTestResolver {
|
|
24
24
|
static getActiveTest(): any;
|
25
25
|
static reset(): void;
|
26
26
|
static onWillCallBeforeAll(cb: TestLifecycleListener): void;
|
27
|
-
static
|
27
|
+
static onDidCallBeforeAll(cb: TestLifecycleListener): void;
|
28
28
|
static onWillCallBeforeEach(cb: TestLifecycleListener): void;
|
29
29
|
static onDidCallBeforeEach(cb: TestLifecycleListener): void;
|
30
30
|
static onWillCallAfterEach(cb: TestLifecycleListener): void;
|
@@ -66,7 +66,7 @@ export default class SpruceTestResolver {
|
|
66
66
|
static onWillCallBeforeAll(cb) {
|
67
67
|
TestLifecycleListeners.willBeforeAllListeners.push(cb);
|
68
68
|
}
|
69
|
-
static
|
69
|
+
static onDidCallBeforeAll(cb) {
|
70
70
|
TestLifecycleListeners.didBeforeAllListeners.push(cb);
|
71
71
|
}
|
72
72
|
static onWillCallBeforeEach(cb) {
|