forked from cerner/terra-graphs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.config.js
28 lines (27 loc) · 1.08 KB
/
jest.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
const jestConfig = require('@cerner/jest-config-terra');
module.exports = {
...jestConfig,
testEnvironmentOptions: {
browsers: [
'chrome',
'firefox',
'safari',
],
},
testMatch: [
'**/carbon-graphs/tests/unit/controls/Bar/(*.)(test.js)',
'**/carbon-graphs/tests/unit/controls/Bubble/**/(*.)(test.js)',
'**/carbon-graphs/tests/unit/controls/Carbon/(*.)(test.js)',
'**/carbon-graphs/tests/unit/controls/Gantt/(*.)(test.js)',
'**/carbon-graphs/tests/unit/controls/Graph/(*.)(test.js)',
'**/carbon-graphs/tests/unit/controls/Line/(*.)(test.js)',
'**/carbon-graphs/tests/unit/controls/PairedResult/(*.)(test.js)',
'**/carbon-graphs/tests/unit/controls/Pie/(*.)(test.js)',
'**/carbon-graphs/tests/unit/controls/Scatter/(*.)(test.js)',
'**/carbon-graphs/tests/unit/core/**/(*.)(test.js)',
// The patterns below are temporarily commented out as not all tests are updated to work with Jest.
// Updating them is currently a work in progress.
// '**/tests/unit/**/(*.)(test.js)',
// '**/tests/unit/**/**/(*.)(test.js)',
],
};