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 f08b6e9 commit 7902975Copy full SHA for 7902975
1 file changed
bin/website/tests.js
@@ -40,7 +40,7 @@ const lsWebsite = (website, auth, path) => {
40
ava.serial('website empty page results', async t => {
41
const website = await tests.run(`website create --name ${tests.getName(t.title)} ${commonCreateParams}`);
42
// TODO: Validate default page according scope
43
- await tests.delay(5); // Workaround for full page startup
+ await tests.delay(5 * 1000); // Workaround for full page startup
44
const resp = await tests.get(`http://${website.fqdn}/`).ok(res => [403, 200].includes(res.status));
45
t.true(resp.text.includes("You don't have permission to access /"));
46
await tests.remove('website', website);
0 commit comments