mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-08-05 01:45:22 +02:00
Add frontend testing, require node 12 (#15315)
- Add basic frontend unit testing infrastructure using jest in ESM mode - Rename 'make test' to 'make test-backend' - Introduce 'make test-frontend' and 'make test' that runs both - Bump Node.js requirement to v12. v10 will be EOL in less than a month. - Convert all build-related JS files to ESM. I opted to run frontend tests run as part of the compliance pipeline because they complete fast and are not platform-specific like the golang tests.
This commit is contained in:
parent
4eea819b24
commit
0d1a5e0ffc
12 changed files with 5151 additions and 35 deletions
10
jest.config.js
Normal file
10
jest.config.js
Normal file
|
@ -0,0 +1,10 @@
|
|||
export default {
|
||||
setupFilesAfterEnv: ['jest-extended'],
|
||||
testTimeout: 20000,
|
||||
testMatch: [
|
||||
'**/web_src/**/*.test.js',
|
||||
],
|
||||
transform: {},
|
||||
verbose: false,
|
||||
};
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue