I have Qunit test cases written in my project. I am using chutzpah test explorer adapter to manage those test cases in VS test explorer. I can see all test cases from my project and also test cases from dependency project. following is my chutzpah.json,
{
"Framework": "qunit",
"RootReferencePathMode": "SettingsFileDirectory",
"CodeCoverageExcludes": [ "*jquery*.js", "*-test.js" ]
}
I do not see any reference to that dependency project as well.How that test cases from dependency project are getting added? How can I exclude those file from dependency project?