DEV: Add a short wait to smoke test to prevent rate limiting

This commit is contained in:
Gerhard Schlager 2019-10-24 18:36:27 +02:00
parent d4d2cb124c
commit 85c08b84a5
1 changed files with 4 additions and 0 deletions

View File

@ -252,6 +252,10 @@ const path = require("path");
);
});
await exec("wait a little bit", () => {
return page.waitFor(5000);
});
await exec("submit the reply", () => {
let promise = page.click("#reply-control .create");