chore: add PTY test vitest config and ready integration

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Yunfei He
2026-05-26 22:11:21 +08:00
parent 8a3b60635d
commit 28d18bedda
4 changed files with 14 additions and 1 deletions
@@ -0,0 +1,10 @@
import { defineConfig } from "vite-plus";
export default defineConfig({
test: {
include: ["integration/pty/**/*.test.ts"],
fileParallelism: false,
testTimeout: 10000,
env: { FORCE_COLOR: "3" },
},
});