8befc0d0de
node-pty 1.1.0's POSIX_SPAWN_CLOEXEC_DEFAULT flag fails on macOS 26 (Tahoe). Beta.13 fixes this. Rewrote helpers to match Ink's node-pty architecture, removed python pty-spawn and force-tty workarounds, added check-pty guard that skips all 82 tests when node-pty is unavailable. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
11 lines
222 B
TypeScript
11 lines
222 B
TypeScript
import { defineConfig } from "vite-plus";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ["integration/pty/**/*.test.ts"],
|
|
fileParallelism: false,
|
|
testTimeout: 15000,
|
|
env: { FORCE_COLOR: "3" },
|
|
},
|
|
});
|