/** * Copyright 2024 Ceeblue B.V. * This file is part of https://github.com/CeeblueTV/web-utils which is released under GNU Affero General Public License. * See file LICENSE or go to https://spdx.org/licenses/AGPL-3.0-or-later.html for full license details. */ import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { globals: true, environment: 'jsdom', coverage: { provider: 'istanbul', reporter: ['lcov'], reportsDirectory: './coverage', reportOnFailure: true }, testTimeout: 10000, silent: true } });