Skip to content

Commit 80b3c15

Browse files
fix: Update test script path to dist/test.js
The test.js file is created in the dist/ directory by the build script, but the test script was looking for it in the root directory. This fix updates the test script to run from dist/test.js. ✅ Fixes GitHub Actions test failure 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent eda5832 commit 80b3c15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mcp-package/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"scripts": {
1414
"build": "node build.js",
1515
"prepublishOnly": "npm run build",
16-
"test": "node test.js",
16+
"test": "node dist/test.js",
1717
"publish:npm": "cd dist && npm publish",
1818
"publish": "./publish.sh"
1919
},

0 commit comments

Comments
 (0)