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 dc3d24b commit 67bc770Copy full SHA for 67bc770
integration/test/ParseObjectTest.js
@@ -268,9 +268,9 @@ describe('Parse Object', () => {
268
const startDiff = Math.abs(start.getTime() - object.createdAt.getTime());
269
const endDiff = Math.abs(end.getTime() - object.createdAt.getTime());
270
expect(startDiff).toBeLessThan(500);
271
- expect(startDiff).toBeGreaterThan(0);
+ expect(startDiff).toBeGreaterThanOrEqual(0);
272
expect(endDiff).toBeLessThan(500);
273
- expect(endDiff).toBeGreaterThan(0);
+ expect(endDiff).toBeGreaterThanOrEqual(0);
274
done();
275
});
276
0 commit comments