@@ -36,9 +36,9 @@ module.exports = function() {
36
36
37
37
it ( '$sort, $skip and $limit should order, skip and limit' , function ( done ) {
38
38
var snapshots = [
39
- { type : 'json0' , v : 1 , data : { x : 1 } , id : "test1" } ,
40
- { type : 'json0' , v : 1 , data : { x : 3 } , id : "test2" } , // intentionally added out of sort order
41
- { type : 'json0' , v : 1 , data : { x : 2 } , id : "test3" }
39
+ { type : 'json0' , v : 1 , data : { x : 1 } , id : "test1" , m : null } ,
40
+ { type : 'json0' , v : 1 , data : { x : 3 } , id : "test2" , m : null } , // intentionally added out of sort order
41
+ { type : 'json0' , v : 1 , data : { x : 2 } , id : "test3" , m : null }
42
42
] ;
43
43
var query = { $sort : { x : 1 } , $skip : 1 , $limit : 1 } ;
44
44
@@ -72,7 +72,7 @@ module.exports = function() {
72
72
] ;
73
73
var snapshotsNoMeta = snapshots . map ( function ( snapshot ) {
74
74
var snapshotCopy = JSON . parse ( JSON . stringify ( snapshot ) ) ;
75
- delete snapshotCopy . m ;
75
+ snapshotCopy . m = null ;
76
76
return snapshotCopy ;
77
77
} ) ;
78
78
@@ -123,9 +123,9 @@ module.exports = function() {
123
123
124
124
it ( 'filters with null condition' , function ( done ) {
125
125
var snapshots = [
126
- { type : 'json0' , v : 1 , data : { x : 1 , y : 1 } , id : "test1" } ,
127
- { type : 'json0' , v : 1 , data : { x : 1 } , id : "test2" } , // y value intentionally omitted
128
- { type : 'json0' , v : 1 , data : { x : 2 , y : 2 } , id : "test3" }
126
+ { type : 'json0' , v : 1 , data : { x : 1 , y : 1 } , id : "test1" , m : null } ,
127
+ { type : 'json0' , v : 1 , data : { x : 1 } , id : "test2" , m : null } , // y value intentionally omitted
128
+ { type : 'json0' , v : 1 , data : { x : 2 , y : 2 } , id : "test3" , m : null }
129
129
] ;
130
130
var query = { y : null } ;
131
131
@@ -145,9 +145,9 @@ module.exports = function() {
145
145
146
146
describe ( 'top-level boolean operator' , function ( ) {
147
147
var snapshots = [
148
- { type : 'json0' , v : 1 , data : { x : 1 , y : 1 } , id : "test1" } ,
149
- { type : 'json0' , v : 1 , data : { x : 1 , y : 2 } , id : "test2" } ,
150
- { type : 'json0' , v : 1 , data : { x : 2 , y : 2 } , id : "test3" }
148
+ { type : 'json0' , v : 1 , data : { x : 1 , y : 1 } , id : "test1" , m : null } ,
149
+ { type : 'json0' , v : 1 , data : { x : 1 , y : 2 } , id : "test2" , m : null } ,
150
+ { type : 'json0' , v : 1 , data : { x : 2 , y : 2 } , id : "test3" , m : null }
151
151
] ;
152
152
153
153
beforeEach ( function ( done ) {
0 commit comments