index
No repositories found
n> Git with a cup of tea! Painless self-hosted all-in-one software development service, including Git hosting, code review, team collaboration, package registry and CI/CD: https://github.com/go-gitea/giteawww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/jest.config.js
blob: 690f58d177199484b2f5a9ea112edd449efeed44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export default {
  rootDir: 'web_src',
  setupFilesAfterEnv: ['jest-extended/all'],
  testEnvironment: 'jsdom',
  testMatch: ['<rootDir>/**/*.test.js'],
  testTimeout: 20000,
  transform: {
    '\\.svg$': 'jest-raw-loader',
  },
  verbose: false,
};