aboutsummaryrefslogtreecommitdiff
path: root/jest.config.js
blob: 11726052c2442269c82402b6c6f645ddb6dc097a (plain)
1
2
3
4
5
6
7
8
9
10
module.exports = {
  preset: 'ts-jest',
  testEnvironment: 'node',
  setupFiles: ['./jsdom-workaround.js'],
  globals: {
    'ts-jest': {
      tsConfig: 'tsconfig.spec.json',
    },
  },
};