Skip to content

Commit

Permalink
Merge branch 'master' into fix-mongo-deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanoverbye authored Jan 10, 2020
2 parents 0e0b705 + 948e8c1 commit fd210e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/keystone/tests/bin/dev-command.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ describe('dev command', () => {
// A mock keystone instance
keystone: {
auth: {},
prepare: () => Promise.resolve({ middlewares: (req, res, next) => res.send(200) }),
prepare: () => Promise.resolve({ middlewares: (req, res, next) => res.sendStatus(200) }),
connect: () => Promise.resolve(),
}
}`
Expand All @@ -87,7 +87,7 @@ describe('dev command', () => {
// A mock keystone instance
keystone: {
auth: {},
prepare: () => Promise.resolve({ middlewares: (req, res, next) => res.send(200) }),
prepare: () => Promise.resolve({ middlewares: (req, res, next) => res.sendStatus(200) }),
connect: () => Promise.resolve(),
}
}`
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -23005,7 +23005,7 @@ which-pm-runs@^1.0.0:
resolved "https://registry.yarnpkg.com/which-pm-runs/-/which-pm-runs-1.0.0.tgz#670b3afbc552e0b55df6b7780ca74615f23ad1cb"
integrity sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=

which@^1.2.9, which@^1.3.0:
which@^1.2.14, which@^1.2.9, which@^1.3.0:
version "1.3.1"
resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
Expand Down

0 comments on commit fd210e4

Please sign in to comment.