forked from unigraph-dev/unigraph-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjest.config.js
More file actions
19 lines (18 loc) · 454 Bytes
/
jest.config.js
File metadata and controls
19 lines (18 loc) · 454 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const baseConfig = require('./jest.config.base')
module.exports = {
...baseConfig,
projects: [
'<rootDir>/packages/*/jest.config.js',
],
coverageDirectory: '<rootDir>/coverage/',
collectCoverageFrom: [
'<rootDir>/packages/*/src/**/*.{ts,tsx}',
],
testURL: 'http://localhost/',
moduleNameMapper: {
'.json$': 'identity-obj-proxy',
},
moduleDirectories: [
'node_modules',
],
}