You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: bypass gulp for test scripts to fix Node 22 ESM compatibility
gulp-cli uses require() to load gulpfile.js which has an ESM top-level
await (config/index.js), causing ERR_REQUIRE_ASYNC_MODULE on Node 22+.
- Replace gulp test/testWatch/testCoverage with direct jest calls
- Add scripts/jest.globalSetup.js to drop test DB before suite runs
(replaces the gulp dropDB task)
- Enable globalSetup in jest.config.js
0 commit comments