UNPKG

@allakando/allakando-web-ui

Version:

Allakando's web component library

21 lines (19 loc) 480 B
import { defineConfig } from "vitest/config" export default defineConfig({ test: { setupFiles: "./__tests__/helpers/setup.js", testTimeout: 20000, env: { bundlePath: "./dist/js/bundle.js", isGlobalDebugMode: false, imageSnapshotConfig: JSON.stringify({ blur: 1, customSnapshotsDir: "./__tests__/__image_snapshots__/", customDiffDir: "./__tests__/__image_snapshots__/__diff_output__/", customDiffConfig: { threshold: 0.6 } }) } } })