I am currently working on a project that involves analyzing Angular framework files, with both the source and test files located in the same directories organized by different features.
Here is an illustration of my directory structure:
+- client
| +- features
| | +- home
| | | +- home.js [source code]
| | +- home.spec.js [test code]
| +- home.html
| +- home.less
+- admin
| +- admin.js [source code]
| +- admin.spec.js [test code]
| +- admin.html
| +- admin.less
...
In my sonar-project.properties
, I am facing challenges setting a pattern instead of a path (for example, sonar.tests=client/**/*.spec.js
).
Is there any method to conduct an analysis with this specific directory structure?
Thank you.