Skip to content

Instantly share code, notes, and snippets.

View irfandyj's full-sized avatar

Irfandy J irfandyj

  • DKI Jakarta, Indonesia
View GitHub Profile
@navjotahuja92
navjotahuja92 / setup.ts
Last active February 12, 2025 10:06
Nest.js Test Setup with In Memory Postgres Database (pg-mem)
// Install npm i pg-mem --save-dev
import { DataSource, Repository } from 'typeorm';
import { newDb, DataType } from 'pg-mem';
import { v4 } from 'uuid';
const setupDataSource = async () => {
const db = newDb({
autoCreateForeignKeyIndices: true,
});