Skip to content

Commit fc1b54a

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents b64e19c + 52cd8d4 commit fc1b54a

File tree

5 files changed

+1215
-1304
lines changed

5 files changed

+1215
-1304
lines changed

integration/test/ParseLocalDatastoreTest.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2727,6 +2727,12 @@ function runTest(controller) {
27272727
q.fromLocalDatastore();
27282728
objects = await q.find();
27292729
assert.equal(objects.length, 1);
2730+
2731+
q = new Parse.Query(TestObject);
2732+
q.lessThanOrEqualTo('dateField', { $relativeTime: 'in 0 day' });
2733+
q.fromLocalDatastore();
2734+
objects = await q.find();
2735+
assert.equal(objects.length, 1);
27302736
});
27312737

27322738
it(`${controller.name} supports withinPolygon`, async () => {

0 commit comments

Comments
 (0)