Skip to content

Commit f832e87

Browse files
authored
Merge a3be420 into 4a75d97
2 parents 4a75d97 + a3be420 commit f832e87

File tree

4 files changed

+1207
-1304
lines changed

4 files changed

+1207
-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)