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

jest.config.js - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d5598e2e47ccfce476be441b29a7e9d50333f5de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module.exports = {
  preset: '@vue/cli-plugin-unit-jest/presets/typescript-and-babel',
  transform: {
    '^.+\\.vue$': 'vue-jest',
    '^.+\\.ts$': 'ts-jest',
  },
  testMatch: [
    '**/plugins/*/vue/**/*.spec.[tj]s',
  ],
  globals: {
    'ts-jest': {
      tsconfig: 'tsconfig.spec.json',
    },
  },
  setupFiles: ['./tests/angularjs/bootstrap.jest.js'],
};