mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 07:44:25 +00: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,
|
|
};
|
|
|