Files
klz-cables.com/.pnpm-store/v10/files/44/ea508feed0c6c10ce354b4baa4dad73e249dd89413d46df9c78eb4456f42ea1752c81d114c1c0c920c584941adcc5dc8eec6756fe96db95baf191440b6f503
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

14 lines
311 B
Plaintext

import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
environment: "jsdom",
globals: true,
snapshotFormat: {
printBasicPrototype: true,
},
setupFiles: ["./setupTests.ts"],
exclude: ["**/node_modules/**", "**/demo/**", "**/playground/**"],
},
});