Skip to content

Commit 4129737

Browse files
committed
0.5.2
1 parent 327f6ae commit 4129737

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "apollo-datasource-mongodb",
3-
"version": "0.5.1",
3+
"version": "0.5.2",
44
"description": "Apollo data source for MongoDB",
55
"main": "dist/index.js",
66
"types": "index.d.ts",

src/__tests__/cache.test.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -164,12 +164,13 @@ describe('createCachingMethods', () => {
164164
expect(collection.find.mock.calls.length).toBe(1)
165165
})
166166

167+
// See datasource.test.js, where we test against a database instance
168+
// (so we don't have to update our already-complex collection.find mock)
169+
//
167170
// it('finds by nested ObjectID field', async () => {
168171
// const foundDocs = await api.findByFields({ 'nested._id': objectID })
169-
170172
// expect(foundDocs[0]).toBe(docs.three)
171173
// expect(foundDocs.length).toBe(1)
172-
173174
// expect(collection.find.mock.calls.length).toBe(1)
174175
// })
175176

src/helpers.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ export const isCollectionOrModel = x =>
1515

1616
export const getCollection = x => (isModel(x) ? x.collection : x)
1717

18-
const DEBUG = true
18+
const DEBUG = false
1919

2020
export const log = (...args) => DEBUG && console.log(...args)

0 commit comments

Comments
 (0)