-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
/
Copy pathstate.ts
66 lines (56 loc) · 1.85 KB
/
state.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
import type {Circus, Global} from '@jest/types';
import eventHandler from './eventHandler';
import formatNodeAssertErrors from './formatNodeAssertErrors';
import {STATE_SYM} from './types';
import {makeDescribe} from './utils';
const eventHandlers: Array<Circus.EventHandler> = [
eventHandler,
formatNodeAssertErrors,
];
export const ROOT_DESCRIBE_BLOCK_NAME = 'ROOT_DESCRIBE_BLOCK';
const createState = (): Circus.State => {
const ROOT_DESCRIBE_BLOCK = makeDescribe(ROOT_DESCRIBE_BLOCK_NAME);
return {
currentDescribeBlock: ROOT_DESCRIBE_BLOCK,
currentlyRunningTest: null,
expand: undefined,
hasFocusedTests: false,
hasStarted: false,
includeTestLocationInResult: false,
maxConcurrency: 5,
parentProcess: null,
rootDescribeBlock: ROOT_DESCRIBE_BLOCK,
seed: 0,
testNamePattern: null,
testTimeout: 5000,
unhandledErrors: [],
unhandledRejectionErrorByPromise: new Map(),
};
};
export const resetState = (): void => {
(globalThis as Global.Global)[STATE_SYM] = createState();
};
resetState();
export const getState = (): Circus.State =>
(globalThis as Global.Global)[STATE_SYM] as Circus.State;
export const setState = (state: Circus.State): Circus.State =>
((globalThis as Global.Global)[STATE_SYM] = state);
export const dispatch = async (event: Circus.AsyncEvent): Promise<void> => {
for (const handler of eventHandlers) {
await handler(event, getState());
}
};
export const dispatchSync = (event: Circus.SyncEvent): void => {
for (const handler of eventHandlers) {
handler(event, getState());
}
};
export const addEventHandler = (handler: Circus.EventHandler): void => {
eventHandlers.push(handler);
};