Welcome to mirror list, hosted at ThFree Co, Russian Federation.

jest.config.js - github.com/thedevs-network/kutt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3e9fe16b7a72046d4cf387cdc77eff214fffde4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = {
  setupFilesAfterEnv: ['<rootDir>/jest-setup.ts'],
  "preset": "ts-jest",
  "transform": {
    "^.+\\.js$": "babel-jest"
  },
  "testEnvironment": "jsdom",
  "globals": {
    "ts-jest": {
      "tsconfig": "<rootDir>/tsconfig.test.json"
    }
  }
};