fix(test): align test script with test:unit — add tsx/esm loader

The 'test' script was missing '--import tsx/esm', causing 25 failures
from Node ESM being unable to resolve extensionless TypeScript imports.
The 'test:unit' script already had the loader and passed 368/368.
This commit is contained in:
diegosouzapw
2026-02-22 19:00:04 -03:00
parent a17583d3fc
commit 6ba48241fe

View File

@@ -47,7 +47,7 @@
"build:cli": "node scripts/prepublish.mjs",
"start": "next start --port 20128",
"lint": "eslint .",
"test": "node --test tests/unit/*.test.mjs",
"test": "node --import tsx/esm --test tests/unit/*.test.mjs",
"test:unit": "node --import tsx/esm --test tests/unit/*.test.mjs",
"test:plan3": "node --test tests/unit/plan3-p0.test.mjs",
"test:fixes": "node --test tests/unit/fixes-p1.test.mjs",