aboutsummaryrefslogtreecommitdiffstats
path: root/config/jest.config.base.js
blob: 87d5b313698de0d706ea1aaa2d1a2c64660a4280 (plain) (blame)
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
import { join } from 'path';

import { fileURLToDirname } from './utils.js';

const thisDir = fileURLToDirname(import.meta.url);

/** @type {import('ts-jest').InitialOptionsTsJest} */
export default {
  preset: 'ts-jest/presets/default-esm',
  globals: {
    'ts-jest': {
      useESM: true,
    },
  },
  moduleNameMapper: {
    '@sophie/(.+)': join(thisDir, '../packages/$1/src/index.ts'),
    '^(\\.{1,2}/.*)\\.js$': '$1',
    // Workaround for typescript to recognize the vendored dependencies of chalk.
    '#ansi-styles': join(thisDir, '../node_modules/chalk/source/vendor/ansi-styles/index.js'),
    '#supports-color': join(thisDir, '../node_modules/chalk/source/vendor/supports-color/index.js'),
  },
  resetMocks: true,
  restoreMocks: true,
  testEnvironment: 'node',
  testPathIgnorePatterns: [
    '/dist/',
    '/node_modules/',
  ],
};