summaryrefslogtreecommitdiff
path: root/jest.config.js
blob: 4627462c730aae58fa3eb2994e331a216f399351 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
const baseConfig = require('./jest.config.base');

module.exports = {
  ...baseConfig('spec/frontend'),
};

const karmaTestFile = process.argv.find(arg => arg.includes('spec/javascripts/'));
if (karmaTestFile) {
  console.error(`
Files in spec/javascripts/ and ee/spec/javascripts need to be run with Karma.
Please use the following command instead:

yarn karma -f ${karmaTestFile}

`);
  process.exit(1);
}