Files
js-sdk/vitest.integration.config.ts
Tasnim Kabir Sadik 5b3f2741a3 feat: add SDK foundation layer
Implement config resolution, typed errors, HTTP and WebSocket transport
helpers, and timeout handling for the SDK foundation. Add unit and local
integration tests covering the SDK foundation behaviour and align
package exports with the tsup output.
2026-05-09 16:32:41 +06:00

12 lines
259 B
TypeScript

import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
environment: "node",
exclude: ["**/node_modules/**", "**/dist/**"],
hookTimeout: 10_000,
include: ["tests/integration/**/*.test.ts"],
testTimeout: 10_000,
},
});