@testream/vitest-reporter
v1.0.1
Published
Vitest reporter to upload test results to Testream
Maintainers
Readme
@testream/vitest-reporter
Bridges Vitest test runs from your codebase into Jira with Testream. Once configured, it uploads results automatically.
Quick Start
npm install --save-dev @testream/vitest-reporter// vitest.config.ts
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
reporters: [
'default',
['@testream/vitest-reporter', {
apiKey: process.env.TESTREAM_API_KEY,
uploadEnabled: true,
}],
],
},
})Need more configuration options? See the full guide at https://docs.testream.app/reporters/vitest.
