Skip to content

Commit

Permalink
attempt to fix flaky test
Browse files Browse the repository at this point in the history
  • Loading branch information
flovilmart committed Jul 18, 2016
1 parent b78edda commit 24c55e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/CloudCodeLogger.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe("Cloud Code Logger", () => {
});

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

0 comments on commit 24c55e6

Please sign in to comment.