aboutsummaryrefslogtreecommitdiffstats
path: root/jest.config.js
blob: 1aa0cbb9fe8d90db3856323d1b299cab30085960 (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
import { join } from 'path';

import { fileURLToDirname } from './config/build-common.js';

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

/** @type {import('ts-jest').InitialOptionsTsJest} */
export default {
  preset: 'ts-jest/presets/default-esm',
  globals: {
    'ts-jest': {
      isolatedModules: true,
      useESM: true,
    },
  },
  moduleNameMapper: {
    '@sophie/(.+)': join(dirname, 'packages/$1/src/index.ts'),
    '^(\\.{1,2}/.*)\\.js$': '$1',
  },
  resetMocks: true,
  restoreMocks: true,
  testEnvironment: 'node',
  testPathIgnorePatterns: [
    '/dist/',
    '/node_modules/',
  ],
};