summaryrefslogtreecommitdiff
path: root/jest.config.js
blob: 96a62b18d8fd904e559df00eeb65253ba6bdb3f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const fs = require('fs');
const IS_JH = require('./config/helpers/is_jh_env');
const baseConfig = require('./jest.config.base');

// TODO: Remove existsSync once jh has added jest.config.js
if (IS_JH && fs.existsSync('./jh/jest.config.js')) {
  // We can't be explicit with eslint-disable rules because in JH it'll pass import/no-unresolved
  // eslint-disable-next-line
  module.exports = require('./jh/jest.config');
} else {
  module.exports = {
    ...baseConfig('spec/frontend'),
  };
}