-
Notifications
You must be signed in to change notification settings - Fork 3
/
jest.config.js
29 lines (29 loc) · 999 Bytes
/
jest.config.js
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
module.exports = {
preset: 'ts-jest',
testEnvironment: 'jsdom',
testURL: 'http://localhost/',
moduleNameMapper: {
'\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
'<rootDir>/internals/mocks/fileMock.js',
'\\.(css|less|sass|scss)$': 'identity-obj-proxy',
'^~/(.*)$': '<rootDir>/app/$1',
'@concordium/web-sdk': '@concordium/common-sdk',
},
moduleFileExtensions: ['js', 'jsx', 'ts', 'tsx', 'json'],
moduleDirectories: ['node_modules', 'app/node_modules'],
setupFiles: [
'./internals/scripts/CheckBuildsExist.js',
'./test/loadModules.ts',
],
globals: {
'ts-jest': {
tsconfig: 'tsconfig.jest.json',
babelConfig: {
plugins: [
'@babel/plugin-proposal-optional-chaining',
'@babel/plugin-proposal-nullish-coalescing-operator',
],
},
},
},
};