Web Dev Solutions

Catalin Mititiuc

aboutsummaryrefslogtreecommitdiff
blob: 083cbd7e06b2f75aba8c764096a72d18601098f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
console.log('Jest config file read.');

module.exports = {
  globalSetup: './test/integration/setup.cjs',
  globalTeardown: './test/integration/teardown.cjs',
  setupFiles: ['./test/integration/helpers.cjs'],
  testPathIgnorePatterns: ['/node_modules/', 'test/unit'],
  verbose: true,
  randomize: true,
  globals: {
    testServerUrl: 'http://localhost:3005/'
  },
};