diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9749a17..ed3d213 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -13,3 +13,11 @@ steps: - script: npm run test displayName: 'Run tests' + +- task: PublishTestResults@2 + inputs: + testResultsFormat: 'JUnit' + testResultsFiles: '*.xml' + searchFolder: '$(Build.Repository.LocalPath)/tests_output' + mergeTestResults: true + condition: always()