chore(email): 🔧 Update TypeScript compiler options in email backend test config
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
parent
8bf537a81e
commit
72be8a062a
2 changed files with 37 additions and 0 deletions
12
features/email/backend-api/test/tsconfig.json
Normal file
12
features/email/backend-api/test/tsconfig.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"extends": "../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"baseUrl": "../",
|
||||
"paths": {
|
||||
"@/*": ["src/*"]
|
||||
},
|
||||
"types": ["jest", "node", "supertest"]
|
||||
},
|
||||
"include": ["./**/*.ts", "../src/**/*.ts"],
|
||||
"exclude": ["node_modules"]
|
||||
}
|
||||
25
features/webmap/e2e/docker-compose.yml
Normal file
25
features/webmap/e2e/docker-compose.yml
Normal file
|
|
@ -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
|
||||
Loading…
Add table
Reference in a new issue