2018-02-27 06:08:13 +00:00
|
|
|
module.exports = {
|
2018-02-27 17:55:24 +00:00
|
|
|
projects: [
|
|
|
|
{
|
|
|
|
displayName: 'test',
|
|
|
|
testPathIgnorePatterns: ['/build/'],
|
|
|
|
modulePaths: ['<rootDir>', '<rootDir>/node_modules/'],
|
|
|
|
moduleDirectories: ['src'],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
runner: 'jest-runner-eslint',
|
|
|
|
displayName: 'lint',
|
|
|
|
testMatch: ['<rootDir>/test/**/*.test.js'],
|
|
|
|
},
|
|
|
|
],
|
2018-02-27 06:08:13 +00:00
|
|
|
}
|