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 df459d1 commit bc4773dCopy full SHA for bc4773d
site/e2e/helpers.ts
@@ -39,17 +39,12 @@ export const createWorkspace = async (
39
40
await expect(page).toHaveURL("/@admin/" + name)
41
42
- // FIXME: workaround for https://github.com/coder/coder/issues/8566
43
- const reloadTimer = setInterval(async () => {
44
- await page.reload()
45
- }, 3000)
46
await page.waitForSelector(
47
"span[data-testid='build-status'] >> text=Running",
48
{
49
state: "visible",
50
},
51
)
52
- clearInterval(reloadTimer)
53
return name
54
}
55
0 commit comments