import { defineConfig } from "vitest/config";

export default defineConfig({
  test: {
    globals: true,
    environment: "node",
    testTimeout: 10000, // 10 second timeout
    hookTimeout: 10000, // 10 second hook timeout
  },
});
