In my project we have unit tests files which ends with .spec.ts and protractor test cases which ends with .prot.spec.ts. Now when I run command 'ng test' my protractor files get picked up because it also has the same extention (.spec.ts) but I dont want them to execute. I tried adding the properties like 'exclude' in tsconfig.json, tsconfig.app.json, test.js but it seems that its not working.
I need to know what is the exact place where I can put my configuration so that my protractor files will be excluded.
Please find the screenshots below :