Files
pos-system/services/iam-service/src/__tests__/setupIntegrationTests.ts

13 lines
269 B
TypeScript

// EN: Setup file for integration tests
// VI: File setup cho integration tests
import { config } from 'dotenv';
// Load env vars
config();
// Increase timeout for integration tests
jest.setTimeout(30000);
// We do NOT mock Prisma here. We want real DB connection.