-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjest.config.js
24 lines (23 loc) · 966 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
const path = require('path')
const baseConfig = require('./src/ambire-common/jest.config.js')
module.exports = {
...baseConfig,
displayName: 'Ambire Extension Unit Tests',
testPathIgnorePatterns: [
path.join('<rootDir>', 'tests/'), // E2E tests, handled by another configuration
path.join('<rootDir>', 'src/ambire-common/'), // Tests for the ambire-common library, handled by another configuration
path.join('<rootDir>', 'node_modules/'),
// Mobile builds
path.join('<rootDir>', 'android/'),
path.join('<rootDir>', 'ios/'),
// Extension, benzin and legends builds
path.join('<rootDir>', 'build/'),
// Safari extension xcode project
path.join('<rootDir>', 'safari-extension/'),
// Misc
path.join('<rootDir>', '\\.[^/]+'), // Matches any directory starting with a dot
path.join('<rootDir>', 'recorder/'), // E2E tests video recorder files
path.join('<rootDir>', 'vendor/') // Ruby
],
setupFiles: []
}