mirror of
https://github.com/gosticks/react-table.git
synced 2025-10-16 11:55:36 +00:00
17 lines
384 B
JavaScript
17 lines
384 B
JavaScript
const path = require('path')
|
|
|
|
const lintProject = require('./configs/tests/jest.lint')
|
|
const unitProject = require('./configs/tests/jest.unit')
|
|
|
|
module.exports = {
|
|
...require('./configs/tests/jest.common'),
|
|
|
|
projects: [lintProject, unitProject],
|
|
|
|
watchPlugins: [
|
|
'jest-watch-typeahead/filename',
|
|
'jest-watch-typeahead/testname',
|
|
'jest-watch-select-projects',
|
|
],
|
|
}
|