forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjest_matchers_object.js
More file actions
47 lines (39 loc) · 1.37 KB
/
jest_matchers_object.js
File metadata and controls
47 lines (39 loc) · 1.37 KB
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
/**
* Copyright (c) 2014-present, Facebook, Inc. All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow
*/
import type {MatchersObject} from 'types/Matchers';
// Global matchers object holds the list of available matchers and
// the state, that can hold matcher specific values that change over time.
const JEST_MATCHERS_OBJECT = Symbol.for('$$jest-matchers-object');
if (!global[JEST_MATCHERS_OBJECT]) {
Object.defineProperty(global, JEST_MATCHERS_OBJECT, {
value: {
matchers: Object.create(null),
state: {
assertionCalls: 0,
expectedAssertionsNumber: null,
isExpectingAssertions: false,
suppressedErrors: [], // errors that are not thrown immediately.
},
},
});
}
export const getState = () => global[JEST_MATCHERS_OBJECT].state;
export const setState = (state: Object) => {
Object.assign(global[JEST_MATCHERS_OBJECT].state, state);
};
export const getMatchers = () => global[JEST_MATCHERS_OBJECT].matchers;
export const setMatchers = (matchers: MatchersObject, isInternal: boolean) => {
for (const key in matchers) {
const matcher = matchers[key];
Object.defineProperty(matcher, '__jestInternal', {
value: isInternal,
});
}
Object.assign(global[JEST_MATCHERS_OBJECT].matchers, matchers);
};