Files
ThreadNet-Web/modules/widget-lifecycle/element-web/vitest.config.ts
T

16 lines
374 B
TypeScript
Raw Normal View History

2026-02-25 09:36:58 +00:00
/*
Copyright 2025 New Vector Ltd.
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE files in the repository root for full details.
*/
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
include: ["tests/**/*.test.ts"],
exclude: ["./e2e/**/*", "./node_modules/**/*"],
},
});