summaryrefslogtreecommitdiffstats
path: root/.eslintrc
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2021-04-08 12:41:57 +0200
committerGitHub <noreply@github.com>2021-04-08 12:41:57 +0200
commit0d1a5e0ffcf689e6e6b2aaa4a4251db74f6b487b (patch)
treec9c854a4efc5c623743ef09fdb3cd37215c4549b /.eslintrc
parent4eea819b2496b849ca8e1e7a6e11fef45e141225 (diff)
downloadgitea-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 '.eslintrc')
-rw-r--r--.eslintrc6
1 files changed, 6 insertions, 0 deletions
diff --git a/.eslintrc b/.eslintrc
index 032b609f94..63e9e6559f 100644
--- a/.eslintrc
+++ b/.eslintrc
@@ -52,6 +52,12 @@ overrides:
rules:
import/no-unresolved: [0]
import/no-extraneous-dependencies: [0]
+ - files: ["*.test.js"]
+ env:
+ jest: true
+ - files: ["*.config.js"]
+ rules:
+ import/no-unused-modules: [0]
rules:
accessor-pairs: [2]