-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathjest.config.js
32 lines (28 loc) · 876 Bytes
/
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
29
30
31
32
const { join } = require('path');
const getPackages = require('./scripts/utils/getPackages');
const pkgList = getPackages();
const moduleNameMapper = {
'\\.(css|less|sass|scss)$': require.resolve('identity-obj-proxy'),
};
pkgList.forEach((shortName) => {
const name = `@vis/${shortName}`;
moduleNameMapper[name] = join(__dirname, `./packages/${shortName}/src`);
});
module.exports = {
collectCoverageFrom: [
'packages/**/src/**/*.{ts,tsx}',
],
testEnvironment: 'jsdom',
moduleNameMapper,
transform: {
'\\.(t|j)sx?$': require.resolve('./tests/jsTransformer'),
},
unmockedModulePathPatterns: ['node_modules/react/'],
testURL: 'http://localhost',
verbose: true,
setupFiles: ['./tests/setupTests.js'],
globals: {
VIS_ONLY_DO_NOT_USE_IN_YOUR_PRODUCTION: false,
},
testPathIgnorePatterns: ["/node_modules/", '/packages/', '/src/']
};