
Azure pipelinesと Testim を統合するには、YAML ファイルに以下の行を追加する必要があります:
steps: - task: NodeTool@0 inputs: versionSpec: '10.x' displayName: 'Install Node.js'
- script: |npm install -g @testim/testim-clitestim --label "<LABEL>" \--token "<TOKEN>" \--project "<PROJECT ID>" \--grid "<Your grid name>" \--report-file testim-tests-report.xml displayName: 'npm install testim-cli and run tests'
- task: PublishTestResults@2 displayName: 'publish testim test results' inputs: testResultsFormat: 'JUnit' testResultsFiles: '**/testim-tests-report.xml'注記: グリッド名については、こちらでグリッドの設定方法をご確認ください。