Add PostgreSQL schema with 8 models (User, Session, McpServer, McpProfile, Project, ProjectMcpProfile, McpInstance, AuditLog), comprehensive model tests (31 passing), seed data for default MCP servers, and package exports. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
242 B
TypeScript
11 lines
242 B
TypeScript
import { defineProject } from 'vitest/config';
|
|
|
|
export default defineProject({
|
|
test: {
|
|
name: 'db',
|
|
include: ['tests/**/*.test.ts'],
|
|
// Test files share the same database — run sequentially
|
|
fileParallelism: false,
|
|
},
|
|
});
|