spb/spbgit Public MIT
SPB Git — the platform hosting itself
JavaScript 73.9%
CSS 11.7%
Nunjucks 11.6%
Shell 2.7%
1/**2 * ─────────────────────────────────────────────3 * SPB Git — Personal Git Platform4 * ─────────────────────────────────────────────5 * Author : Simon-Pierre Boucher6 * Contact : contact@spboucher.ai7 * File : vitest.config.mjs8 * Purpose : Vitest configuration — single fork (e2e binds real ports)9 * License : MIT © Simon-Pierre Boucher10 * ─────────────────────────────────────────────11 */1213import { defineConfig } from 'vitest/config';1415export default defineConfig({16 test: {17 pool: 'forks',18 poolOptions: { forks: { singleFork: true } },19 testTimeout: 30000,20 hookTimeout: 120000,21 },22});23