- Add agentBlocks and lookupMessage to controller type declarations - Separate e2e tests from unit tests via dedicated vitest.e2e.config.ts (e2e test requires built dist/index.js, can't run before build step) - Increase stdio e2e timeout from 5s to 15s for slower CI environments
10 lines
205 B
TypeScript
10 lines
205 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: 'node',
|
|
include: ['test/**/*.e2e.test.ts'],
|
|
testTimeout: 30_000,
|
|
},
|
|
});
|