mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
05fb1f61d5
- Define jest rootDir to limit where it looks for test files - Add missing dependency on test-frontend target so it can be ran from a clean checkout
12 lines
191 B
JavaScript
12 lines
191 B
JavaScript
export default {
|
|
setupFilesAfterEnv: ['jest-extended'],
|
|
testTimeout: 20000,
|
|
rootDir: 'web_src',
|
|
testMatch: [
|
|
'<rootDir>/**/*.test.js',
|
|
],
|
|
transform: {},
|
|
verbose: false,
|
|
};
|
|
|