aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorsilverwind2022-10-14 15:36:16 +0200
committerGitHub2022-10-14 21:36:16 +0800
commitc3098076b5264f080fc727d73bfd538916ac02b3 (patch)
treeb6e217e73159deb011e537ac90d82c1edaed15fc /Makefile
parent9dc264a2eebbd30bbff483c26bf27f0406677f77 (diff)
Switch from jest to vitest (#21444)
Even if we are not bundling with `vite` yet, we can use `vitest` in place of Jest which brings a few benefits like not requiring to use `NODE_OPTIONS` to run and having sane module resolution. It's possible to also use `jest-extended` with vitest, but I opted to not do so for now because it brings heavyweight dependencies and it was trivial to just rewrite the affected matchers to be compatible. This PR also removes 153 JS dependencies, which is certainly nice. Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 982827575..a8bb26092 100644
--- a/Makefile
+++ b/Makefile
@@ -372,7 +372,7 @@ test-backend:
.PHONY: test-frontend
test-frontend: node_modules
- @NODE_OPTIONS="--experimental-vm-modules --no-warnings" npx jest --color
+ npx vitest
.PHONY: test-check
test-check: