8 lines
304 B
JavaScript
8 lines
304 B
JavaScript
// This the Redwood root jest config
|
|
// Each side, e.g. ./web/ and ./api/ has specific config that references this root
|
|
// More info at https://redwoodjs.com/docs/project-configuration-dev-test-build
|
|
|
|
module.exports = {
|
|
rootDir: '.',
|
|
projects: ['<rootDir>/{*,!(node_modules)/**/}/jest.config.js'],
|
|
}
|