mirror of
https://github.com/teamchong/pxpipe.git
synced 2026-07-22 02:02:51 +02:00
16960b8230
- docs-integrity: normalize walker paths to forward slashes so keys match on Windows - export-git-e2e: run tsx's JS entry via node instead of the .bin/.cmd shim (same pattern as #63) - vitest: 30s testTimeout for CPU-bound PNG-render tests on slower machines (build.mjs portion of the original branch dropped — superseded by #63)
12 lines
319 B
TypeScript
12 lines
319 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ['tests/**/*.test.ts'],
|
|
environment: 'node',
|
|
// Render-heavy tests (full-page PNG encodes) can exceed the 5s default on
|
|
// slower machines; the work is CPU-bound, not hung.
|
|
testTimeout: 30_000,
|
|
},
|
|
});
|