Skip to content

Commit

Permalink
fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
AVtheking committed Apr 4, 2024
1 parent b9b4304 commit 5276968
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ services:
volumes:
- redis-data:/data/redis

talawa-api-container:
build: .
ports:
- 4000:4000
depends_on:
- mongodb
- redis-stack-server
environment:
- MONGO_DB_URL=mongodb://mongodb:27017
- REDIS_HOST=redis-stack-server
- REDIS_PORT=6379
# talawa-api-container:
# build: .
# ports:
# - 4000:4000
# depends_on:
# - mongodb
# - redis-stack-server
# environment:
# - MONGO_DB_URL=mongodb://mongodb:27017
# - REDIS_HOST=redis-stack-server
# - REDIS_PORT=6379

volumes:
mongodb-data:
Expand Down
2 changes: 1 addition & 1 deletion src/resolvers/Mutation/signUp.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import bcrypt from "bcryptjs";
import { Document } from "mongoose";
import type { Document } from "mongoose";
import {
EMAIL_ALREADY_EXISTS_ERROR,
LAST_RESORT_SUPERADMIN_EMAIL,
Expand Down

0 comments on commit 5276968

Please sign in to comment.