diff options
author | silverwind <me@silverwind.io> | 2021-04-08 12:41:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-08 12:41:57 +0200 |
commit | 0d1a5e0ffcf689e6e6b2aaa4a4251db74f6b487b (patch) | |
tree | c9c854a4efc5c623743ef09fdb3cd37215c4549b /package.json | |
parent | 4eea819b2496b849ca8e1e7a6e11fef45e141225 (diff) | |
download | gitea-0d1a5e0ffcf689e6e6b2aaa4a4251db74f6b487b.tar.gz gitea-0d1a5e0ffcf689e6e6b2aaa4a4251db74f6b487b.zip |
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.
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/package.json b/package.json index 6d252c2e56..20a64856f8 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,9 @@ { "license": "MIT", "private": true, + "type": "module", "engines": { - "node": ">= 10.13.0" + "node": ">= 12.17.0" }, "dependencies": { "@claviska/jquery-minicolors": "2.3.5", @@ -50,6 +51,8 @@ "eslint-plugin-import": "2.22.1", "eslint-plugin-unicorn": "29.0.0", "eslint-plugin-vue": "7.8.0", + "jest": "26.6.3", + "jest-extended": "0.11.5", "stylelint": "13.12.0", "stylelint-config-standard": "21.0.0", "svgo": "2.3.0", |