-
-
Notifications
You must be signed in to change notification settings - Fork 814
/
jest.config.js
41 lines (35 loc) · 1.28 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
const { resolve } = require('path');
const { pathsToModuleNameMapper } = require('ts-jest');
const CI = !!process.env.CI;
const ROOT_DIR = __dirname;
const TSCONFIG = resolve(ROOT_DIR, 'tsconfig.json');
const tsconfig = require(TSCONFIG);
const ESM_PACKAGES = ['graphql', 'graphql-upload', 'fs-capacitor'];
const modulePathIgnorePatterns = ['dist', 'test-assets', 'test-files', 'fixtures', '.bob'];
// Higher versions have only ESM support so we're good if import fails in CJS here
try {
const { versionInfo } = require('graphql');
if (versionInfo.major < 16) {
modulePathIgnorePatterns.push('federation');
}
} catch (e) {}
module.exports = {
testEnvironment: 'node',
rootDir: ROOT_DIR,
prettierPath: null, // disable prettier for inline snapshots
restoreMocks: true,
reporters: ['default'],
modulePathIgnorePatterns,
moduleNameMapper: pathsToModuleNameMapper(tsconfig.compilerOptions.paths, {
prefix: `${ROOT_DIR}/`,
}),
collectCoverage: false,
cacheDirectory: resolve(ROOT_DIR, `${CI ? '' : 'node_modules/'}.cache/jest`),
transform: {
'^.+\\.mjs?$': 'babel-jest',
'^.+\\.ts?$': 'babel-jest',
'^.+\\.js$': 'babel-jest',
},
transformIgnorePatterns: [`node_modules/(?!(${ESM_PACKAGES.join('|')})/)`],
resolver: 'bob-the-bundler/jest-resolver',
};