After updating to version 1.1.0 oif sonarCloud my test folder is now included in the analysis

Hi,

Okay, you’re probably interested in this thread

And as a side note

  • sonar.langauge=js = this isn’t doing anything
  • ** in an exclusion/inclusion pattern means 0-n directories, so sonar.exclusions=test/** isn’t doing what you think it is. Try sonar.exclusions=test/**/*.ts (&etc) instead
  • except that your specification of sonar.tests=test/ naturally already excludes those files from being considered source files.

 
Ann