We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a38983 commit f878c8aCopy full SHA for f878c8a
packages/query-parser/src/index.spec.ts
@@ -291,15 +291,11 @@ describe('mongodb-query-parser', function () {
291
});
292
293
it('should support NumberInt', function () {
294
- assert.deepEqual(convert('NumberInt("1234567890")'), {
295
- $numberInt: '1234567890',
296
- });
+ assert.deepEqual(convert('NumberInt("1234567890")'), 1234567890);
297
298
299
it('should support NumberInt with number', function () {
300
- assert.deepEqual(convert('NumberInt(1234567890)'), {
301
302
+ assert.deepEqual(convert('NumberInt(1234567890)'), 1234567890);
303
304
305
it('should support NumberDecimal', function () {
0 commit comments