Back to Vitest

dangerouslyIgnoreUnhandledErrors | Config

docs/config/dangerouslyignoreunhandlederrors.md

4.1.5647 B
Original Source

dangerouslyIgnoreUnhandledErrors <CRoot />

  • Type: boolean
  • Default: false
  • CLI:
    • --dangerouslyIgnoreUnhandledErrors
    • --dangerouslyIgnoreUnhandledErrors=false

If this option is set to true, Vitest will not fail the test run if there are unhandled errors. Note that built-in reporters will still report them.

If you want to filter out certain errors conditionally, use onUnhandledError callback instead.

Example

js
import { defineConfig } from 'vitest/config'

export default defineConfig({
  test: {
    dangerouslyIgnoreUnhandledErrors: true,
  },
})