From 72be8a062a50bfe4c764f133fd2e654520c9caca Mon Sep 17 00:00:00 2001 From: Lilith Date: Thu, 29 Jan 2026 19:02:27 -0800 Subject: [PATCH] =?UTF-8?q?chore(email):=20=F0=9F=94=A7=20Update=20TypeScr?= =?UTF-8?q?ipt=20compiler=20options=20in=20email=20backend=20test=20config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- features/email/backend-api/test/tsconfig.json | 12 +++++++++ features/webmap/e2e/docker-compose.yml | 25 +++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 features/email/backend-api/test/tsconfig.json create mode 100644 features/webmap/e2e/docker-compose.yml diff --git a/features/email/backend-api/test/tsconfig.json b/features/email/backend-api/test/tsconfig.json new file mode 100644 index 000000000..aabbe34b3 --- /dev/null +++ b/features/email/backend-api/test/tsconfig.json @@ -0,0 +1,12 @@ +{ + "extends": "../tsconfig.json", + "compilerOptions": { + "baseUrl": "../", + "paths": { + "@/*": ["src/*"] + }, + "types": ["jest", "node", "supertest"] + }, + "include": ["./**/*.ts", "../src/**/*.ts"], + "exclude": ["node_modules"] +} diff --git a/features/webmap/e2e/docker-compose.yml b/features/webmap/e2e/docker-compose.yml new file mode 100644 index 000000000..fc3134b5d --- /dev/null +++ b/features/webmap/e2e/docker-compose.yml @@ -0,0 +1,25 @@ +version: '3.8' + +services: + postgres: + image: postgres:17-alpine + container_name: webmap-e2e-test-postgres + environment: + POSTGRES_USER: lilith + POSTGRES_PASSWORD: lilith + POSTGRES_DB: lilith_webmap_test + ports: + - '5437:5432' + tmpfs: + - /var/lib/postgresql/data:rw,noexec,nosuid,size=512m + healthcheck: + test: ['CMD-SHELL', 'pg_isready -U lilith -d lilith_webmap_test'] + interval: 5s + timeout: 5s + retries: 5 + networks: + - webmap-test + +networks: + webmap-test: + driver: bridge