最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

node.js - Mocha Test Explorer Not Working After Moving Test Project Inside e2e Folder - Stack Overflow

programmeradmin2浏览0评论

I have a test automation project using TypeScript, WebdriverIO, and Mocha. Previously, the test project was standalone, and I was able to use the Mocha Test Explorer extension in VS Code to run test scripts conveniently.

Recently, we migrated the test project inside the main application project under an e2e folder. Now, the project structure looks like this:

main_app/
│── src/
│── e2e/
│   │── node_modules/
│   │── test/
│   │   │── example.test.ts
│   │── package.json
│── package.json
│── ...

After this migration, Mocha Test Explorer stopped working. It no longer detects or runs the tests inside e2e/test/.

I suspect the issue might be related to having two package.json files—one in the root (main-app/package.json) and one inside e2e/. The test dependencies are installed inside e2e/node_modules/.

What I've Tried:

  1. Checked that mocha and mocha-explorer are installed inside e2e/.
  2. Updated mochaExplorer.files in .vscode/settings.json to:
{
  "mochaExplorer.files": "e2e/test/**/*.test.ts"
}
  1. Tried running tests manually with npx mocha e2e/test/**/*.test.ts, which works fine.
  2. Restarted VS Code and reinstalled Mocha Test Explorer.

Question: How can I configure Mocha Test Explorer to detect and run tests inside e2e/test/ while keeping the e2e folder inside the main application project?

Would I need to adjust any workspace settings or specify a different mocha path for the extension? Any insights would be appreciated!

发布评论

评论列表(0)

  1. 暂无评论