Web Dev Solutions

Catalin Mititiuc

aboutsummaryrefslogtreecommitdiff
blob: 28562eaea266a6b88fe4acbca41169a5b40e16e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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'],
  testTimeout: 5000,
  globals: {
    testServerUrl: 'http://localhost:3005/'
  }
};