mirror of
https://github.com/gosticks/react-table.git
synced 2025-10-16 11:55:36 +00:00
* add deps for testing * feat(tests): add jest configs * uncomment module directories path
14 lines
253 B
JavaScript
14 lines
253 B
JavaScript
const {rootDir} = require('./jest.common');
|
|
|
|
module.exports = {
|
|
rootDir,
|
|
|
|
displayName: 'lint',
|
|
|
|
runner: 'jest-runner-eslint',
|
|
|
|
testMatch: ['<rootDir>/src/**/*.js'],
|
|
|
|
testPathIgnorePatterns: ['node_modules', 'coverage', 'dist', '.test.js'],
|
|
};
|