Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Moving docker container spinning to a fixture usable in jest #465

Merged
merged 3 commits into from
Apr 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
443 changes: 414 additions & 29 deletions package-lock.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"mongodb-client-encryption": "1.0.1"
},
"devDependencies": {
"jest-environment-node": "25.3.0",
"lerna": "3.20.2",
"tslint": "6.1.1",
"start-server-and-test": "1.10.11"
Expand Down
16 changes: 13 additions & 3 deletions packages/itmat-interface/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions packages/itmat-interface/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@
"scripts": {
"start": "cross-env NODE_ENV=development webpack --config ./config/webpack.config.js",
"build": "npm run clean && npm run compile",
"test-files": "jest --color --coverage",
"test": "node ./test/setup-and-test.js",
"jest": "jest",
"test": "jest --color --coverage --runInBand --verbose --forceExit --detectOpenHandles",
"clean": "rimraf -rf ./build",
"compile": "webpack --config ./config/webpack.config.js",
"prepublishOnly": "npm run build"
Expand Down Expand Up @@ -57,8 +55,11 @@
"chalk": "4.0.0",
"cors": "2.8.5",
"cross-env": "7.0.2",
"cross-spawn": "7.0.2",
"eslint-plugin-typescript": "0.14.0",
"get-port": "5.1.1",
"jest": "25.2.7",
"mongodb-memory-server": "6.2.4",
"node-fetch": "2.6.0",
"mongodb-memory-server": "6.5.2",
"rimraf": "3.0.2",
Expand All @@ -74,6 +75,7 @@
"jest": {
"transform": {
"^.+\\.(ts|js)$": "ts-jest"
}
},
"testEnvironment": "<rootDir>/../../test/fixtures/_minioJestEnv"
}
}
Loading