2026-05-26 22:11:21 +08:00
|
|
|
import { defineConfig } from "vite-plus";
|
|
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
test: {
|
|
|
|
|
include: ["integration/pty/**/*.test.ts"],
|
2026-05-26 23:40:35 +08:00
|
|
|
pool: "forks",
|
2026-05-26 22:11:21 +08:00
|
|
|
fileParallelism: false,
|
2026-05-26 23:40:35 +08:00
|
|
|
maxWorkers: 1,
|
|
|
|
|
isolate: false,
|
2026-05-26 22:11:21 +08:00
|
|
|
testTimeout: 10000,
|
|
|
|
|
env: { FORCE_COLOR: "3" },
|
|
|
|
|
},
|
|
|
|
|
});
|