Back to Vitest

browser.detailsPanelPosition | Config

docs/config/browser/detailspanelposition.md

4.1.51.2 KB
Original Source

browser.detailsPanelPosition

  • Type: 'right' | 'bottom'
  • Default: 'right'
  • CLI: --browser.detailsPanelPosition=bottom, --browser.detailsPanelPosition=right

Controls the default position of the details panel in the Vitest UI when running browser tests.

  • 'right' - Shows the details panel on the right side with a horizontal split between the browser viewport and the details panel.
  • 'bottom' - Shows the details panel at the bottom with a vertical split between the browser viewport and the details panel.
ts
import { defineConfig } from 'vitest/config'

export default defineConfig({
  test: {
    browser: {
      enabled: true,
      detailsPanelPosition: 'bottom', // or 'right'
    },
  },
})

Example

::: tabs == bottom

<center> </center> == right <center> </center> :::