Skip to content

Commit 24c55e6

Browse files
committed
attempt to fix flaky test
1 parent b78edda commit 24c55e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: spec/CloudCodeLogger.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ describe("Cloud Code Logger", () => {
1313
});
1414

1515
Parse.Cloud.run('loggerTest').then(() => {
16-
return logController.getLogs({from: Date.now() - 500, size: 1000});
16+
return logController.getLogs({from: Date.now() - 1000, size: 1000});
1717
}).then((res) => {
1818
expect(res.length).not.toBe(0);
1919
let lastLogs = res.slice(0, 2);

0 commit comments

Comments
 (0)