-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathjest_modules.javascript.txt
76 lines (57 loc) · 4.55 KB
/
jest_modules.javascript.txt
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
67
68
69
70
71
72
73
74
75
76
┏━━━━━━━━━━━━━━━━━━┓
┃ JEST_MODULES ┃
┗━━━━━━━━━━━━━━━━━━┛
ALTERNATIVES ==> # - Jest modules: best with Jest
# - Node.js mock.module(): builtin with Node.js
VERSION ==> #Package within Jest monorepo (see its doc)
┌──────────┐
│ CORE │
└──────────┘
RPATH #Argument to require(), i.e. can be 'MODULE', 'PATH', etc.
JEST.createMockFromModule(RPATH) #Like require(RPATH) but calls MOCK.mockImplementation(function () {})
#on every function deep member
MOCKFILE #RPATH_DIR/../[.../]__mocks__/RPATH_FILENAME meant to mock require(RPATH)
#For node modules or core Node.js modules, should be ROOTS/__mocks__/MODULE.js
#Automatically used by require(RPATH) if RPATH is a non-core Node.js module
JEST.mock #Mock future calls to require(RPATH):
(RPATH[, FUNC()->VAL][, OPTS]) # - if FUNC()->VAL, return VAL
->JEST # - if a MOCKFILE exists, use it
# - otherwise JEST.createMockFromModule()
#OPTS:
# - virtual BOOL: if false (def), throw error if RPATH does not exist
JEST.setMock(RPATH, VAL) #Same as JEST.mock(RPATH, FUNC()->VAL)
JEST.unmock(RPATH) #Reverse JEST.mock()
JEST.unstable_[un]mockModule(...) #Same as JEST.[un]mock(...) except:
# - for ES modules
# - FUNC() is required and can be async
JEST.mocked(VAL[, BOOL])->VAL #For a VAL already mocked, return it but adding TypeScript type information
#BOOL is whether to do it deeply
BABEL-PLUGIN-JEST-HOIST ==> #Babel plugin automatically included by babel-jest, which hoists every JEST.[un]mock(...) to
#top-level scope
JEST.do[nt]Mock(...) #Same as JEST.[un]mock(...) except prevents babel-plugin-jest-hoist
JEST.onGenerateMock
(FUNC('MODULE', VAL)) #Called on JEST.mock(RPATH)
CONF.moduleNameMapper.REGEXP #RPATH2. Replaces require(RPATH) (if it matches REGEXP) by require(RPATH2)
JEST.enable|disableAutomock() #Automatically calls JEST.mock() on every require(RPATH) except:
# - core Node.js modules
# - modules mocked through CONF.moduleNameWrapper
# - any RPATH matching CONF.unmockedModulePathPatterns 'REGEXP'_ARR (def: [])
CONF.automock #Def: false|disabled
require.requireActual|Mock(...) #Like require(...) but forces using [un]mocked version
┌────────────────────┐
│ CUSTOM REQUIRE │
└────────────────────┘
JEST.resetModules() #Resets require() caching
CONF.resetModules #BOOL. If true (def: false), calls JEST.resetModules() between every test
JEST.isolateModules(FUNC()) #Sandboxes require() inside inside FUNC(), i.e. their cache is cleaned at end of FUNC()
JEST.isolateModulesAsync
(FUNC()->PROMISE) #
CONF.moduleFileExtensions #'EXT'_ARR that are optional in require() (def: ['js', 'mjs', 'cjs', 'json', 'node', 'jsx', 'ts', 'mts', 'cts', 'tsx'])
CONF.moduleDirectories #Directories searched on ancestors by require() (def: ['node_modules'])
CONF.modulePaths #Additional directories searched by require() (def: [])
CONF.modulePathIgnorePatterns #'FILE|DIR'_ARR to not allow in require() (def: [])
CONF.browser #BOOL (def: false). Use package.json 'browser' field on require()
CONF.resolver #Custom require() handler
#Must be FUNC(RPATH, OBJ)->PATH
#OBJ are CONF-related: basedir STR, rootDir ARR, extensions 'EXT'_ARR,
#moduleDirectory 'DIR'_ARR, paths ARR, browser BOOL