test: migrate test suite to Node.js built-in test runner#590
Merged
Conversation
|
Replace Jest with Node's built-in test runner (`node:test` and `node:assert`) following the same pattern used by webpack-contrib/sass-loader. Changes: - Convert all test files to native ESM using `node:test` and `node:assert` - Add `test/package.json` with `type: module` so test files run as ESM - Add `test/setup-snapshots.js` to keep snapshots in `test/__snapshots__/` - Rewrite helpers as native ESM (use `fileURLToPath`/`createRequire`) - Rename CJS fixtures and the test loader to `.cjs` - Test against the built loader in `dist/cjs.js` (`pretest` runs build) - Regenerate snapshots in node:test format - Bump minimum Node.js to `>= 22.11.0` - Remove `jest` and `babel-jest` from devDependencies
027161b to
9061604
Compare
The test runner migration bumped the engines requirement to Node.js >= 22.11.0, so older Node versions can no longer run the suite. The `--ci` flag was specific to Jest and is not understood by `node:test`.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replace Jest with Node's built-in test runner (
node:testandnode:assert) following the same pattern used by webpack-contrib/sass-loader.Changes:
node:testandnode:asserttest/package.jsonwithtype: moduleso test files run as ESMtest/setup-snapshots.jsto keep snapshots intest/__snapshots__/fileURLToPath/createRequire).cjsdist/cjs.js(pretestruns build)>= 22.11.0jestandbabel-jestfrom devDependencies