Skip to content

Commit 0b6ea5c

Browse files
authored
Merge branch 'master' into fix-server-kill
2 parents 6ab1612 + 84aa1b9 commit 0b6ea5c

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ beforeAll(async () => {
238238
mongoServer = new MongodbMemoryServer();
239239
const mongoUri = await mongoServer.getConnectionString();
240240
mongoose.connect(mongoUri, opts, (err) => {
241-
console.error(err);
241+
if (err) console.error(err);
242242
});
243243
});
244244

yarn.lock

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ babel-plugin-istanbul@^4.1.5:
633633
find-up "^2.1.0"
634634
istanbul-lib-instrument "^1.7.5"
635635
test-exclude "^4.1.1"
636-
636+
637637
babel-plugin-jest-hoist@^22.0.6:
638638
version "22.0.6"
639639
resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-22.0.6.tgz#551269ded350a15d6585da35d16d449df30d66c4"
@@ -1489,6 +1489,18 @@ conventional-commits-parser@^2.0.0:
14891489
through2 "^2.0.0"
14901490
trim-off-newlines "^1.0.0"
14911491

1492+
conventional-commits-parser@^2.0.0:
1493+
version "2.0.0"
1494+
resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-2.0.0.tgz#71d01910cb0a99aeb20c144e50f81f4df3178447"
1495+
dependencies:
1496+
JSONStream "^1.0.4"
1497+
is-text-path "^1.0.0"
1498+
lodash "^4.2.1"
1499+
meow "^3.3.0"
1500+
split2 "^2.0.0"
1501+
through2 "^2.0.0"
1502+
trim-off-newlines "^1.0.0"
1503+
14921504
convert-source-map@^1.1.0, convert-source-map@^1.4.0, convert-source-map@^1.5.0:
14931505
version "1.5.0"
14941506
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.5.0.tgz#9acd70851c6d5dfdd93d9282e5edf94a03ff46b5"
@@ -3641,7 +3653,7 @@ mime-types@^2.1.12, mime-types@~2.1.7:
36413653
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.16.tgz#2b858a52e5ecd516db897ac2be87487830698e23"
36423654
dependencies:
36433655
mime-db "~1.29.0"
3644-
3656+
36453657
mime-types@~2.1.17:
36463658
version "2.1.17"
36473659
resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a"
@@ -3994,6 +4006,10 @@ parse-github-url@^1.0.1:
39944006
version "1.0.2"
39954007
resolved "https://registry.yarnpkg.com/parse-github-url/-/parse-github-url-1.0.2.tgz#242d3b65cbcdda14bb50439e3242acf6971db395"
39964008

4009+
parse-github-repo-url@^1.4.1:
4010+
version "1.4.1"
4011+
resolved "https://registry.yarnpkg.com/parse-github-repo-url/-/parse-github-repo-url-1.4.1.tgz#9e7d8bb252a6cb6ba42595060b7bf6df3dbc1f50"
4012+
39974013
parse-glob@^3.0.4:
39984014
version "3.0.4"
39994015
resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c"

0 commit comments

Comments
 (0)