fix: tentatively fix flaky tests
In CI the tests sometimes fail with the following error:
`ReferenceError: exports is not defined`.[1]
This commit changes the ts-node Jest preset to transpile code into
CommonJS instead of using ESM, since the latter is considered
experimental. It is unknown whether this will fix the issue in the CI,
but it might help.
Due to this change, this commit also migrates a Javascript test to
Typescript.
[1]: https://zuul.corp.avm99963.com/t/gerrit/build/08e3a3723c03477cbd3f7c63d0568be9
Change-Id: I31f4e0fa6ec5d28ce97fae108e51eccc412c4535
diff --git a/Makefile b/Makefile
index 5383c36..a2c4b31 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
.PHONY: node_deps clean_dist deps clean_deps lit_localize_extract lit_localize_build lit_localize_all serve_chromium_mv3 serve_gecko release release_chromium_stable release_chromium_beta release_chromium_canary release_gecko_stable build_test_extension clean_releases test clean trigger_nightly_build
WEBPACK := ./node_modules/webpack-cli/bin/cli.js
-JEST := node --experimental-vm-modules ./node_modules/jest/bin/jest.js
+JEST := node ./node_modules/jest/bin/jest.js
RELEASE_SCRIPT := bash tools/release.bash
grpc_proto_gen: