build(tests): ensure compatibility with ESM in Jest by updating test script - Updated test script in package.json to use with Jest.
This commit is contained in:
parent
56e5f69cbb
commit
6a428c55e0
|
@ -3,7 +3,7 @@
|
||||||
"version": "1.1.0",
|
"version": "1.1.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node src/app.js",
|
"start": "node src/app.js",
|
||||||
"test": "jest ./test"
|
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js ./test"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"axios": "^1.7.7",
|
"axios": "^1.7.7",
|
||||||
|
|
Loading…
Reference in New Issue