0.1.1 • Published 3 years ago

vitest-github-actions-summary-reporter v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

📝 vitest-github-actions-summary-reporter

Vitest reporter that will append test results to the GITHUB_STEP_SUMMARY file.

💿 Installation

pnpm i -D vitest-github-actions-summary-reporter

🔧 Configuration

Add new custom reporter vite.config.ts

import { defineConfig } from 'vitest/config'
import { GithubActionsReporter } from 'vitest-github-actions-summary-reporter'

export default defineConfig({
  test: {
    reporters: [new GithubActionsReporter()],
  },
})