WizardConnect/packages/wallet/vitest.integration.config.ts
2026-03-06 11:38:09 +01:00

18 lines
582 B
TypeScript

// Copyright (C) 2026 Whiterun LLC,
// This software is licensed under the GNU Lesser General Public License (LGPL), version 3.0 or later.
// A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/lgpl-3.0.html
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
include: ["src/integration/**/*.test.ts"],
testTimeout: 60000,
hookTimeout: 60000,
// Run integration tests serially to avoid relay contention
pool: "forks",
poolOptions: {
forks: { singleFork: true },
},
},
});