Add embryo to e2e tests

This commit is contained in:
Niklas Fondberg
2021-04-19 12:54:38 +02:00
parent 6bd48467a3
commit bf01ecba9c
5 changed files with 3903 additions and 8 deletions
+9 -8
View File
@@ -4,7 +4,9 @@
"description": "",
"main": "src/index.js",
"scripts": {
"start": "nodemon -w src --ext ts --exec ts-node src/index.ts"
"start": "nodemon -w src --ext ts --exec ts-node src/index.ts",
"test": "jest --detectOpenHandles",
"test:dev": "jest --watch"
},
"author": "",
"license": "ISC",
@@ -12,6 +14,7 @@
"apollo-datasource": "^0.8.0",
"apollo-datasource-rest": "^0.11.0",
"apollo-server": "^2.22.2",
"async-redis": "^1.1.7",
"datasource-sql": "^1.4.0",
"dotenv": "^8.2.0",
"graphql": "^15.5.0",
@@ -27,16 +30,14 @@
"validator": "^13.5.2"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/__utils"
]
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"testcontainers": "^7.7.0",
"ts-jest": "^26.5.5"
}
}