Files
ThreadNet-Web/packages/module-api/vitest.config.ts
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
474 B
TypeScript
Raw Normal View History

2026-06-10 17:00:34 +01: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 { defineProject } from "vitest/config";
import viteConfig from "./vite.config";
export default defineProject({
test: {
environment: "node",
pool: "threads",
globals: false,
include: ["src/**/*.test.{ts,tsx}"],
},
define: viteConfig.define,
});