Sonarqube test report “report refers to a file which is not configured as a test file” when tests and source are together

前端 未结 3 1914
情话喂你
情话喂你 2021-01-18 06:33

I am using TypeScript and Jest and have my tests next to my source files. e.g:

  • someDir
    • someCode.ts
    • someCode.spec.ts
<
3条回答
  •  太阳男子
    2021-01-18 06:40

    You can try

    sonar.sources = **/someDir/**/*
    sonar.tests = **/someDir/*
    //or
    sonar.sources = **/someDir/*
    sonar.tests = **/someDir/*
    

    Depending on if you have any sub-directories. Might be a better alternative to listing all locations for both tests and sources.

提交回复
热议问题