chore: remove flaking e2e test (#5884)

This commit is contained in:
Kira Pilot 2023-01-26 21:10:01 -05:00 committed by GitHub
parent 3d58e6912a
commit e663eaad96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 48 deletions

View File

@ -1,48 +0,0 @@
import { test, expect } from "@playwright/test"
import { email, password } from "../constants"
import { SignInPage } from "../pom"
import { clickButton, buttons, fillInput } from "../helpers"
import dayjs from "dayjs"
test("Basic flow", async ({ baseURL, page }) => {
// We're keeping entire flows in one test, which means the test needs extra time.
test.setTimeout(5 * 60 * 1000)
await page.goto(baseURL + "/", { waitUntil: "networkidle" })
// Log-in with the default credentials we set up in the development server
const signInPage = new SignInPage(baseURL, page)
await signInPage.submitBuiltInAuthentication(email, password)
// create Docker template
await page.click("text=Templates")
await clickButton(page, buttons.starterTemplates)
await page.click(`text=${buttons.dockerTemplate}`)
await clickButton(page, buttons.useTemplate)
await clickButton(page, buttons.createTemplate)
// create workspace
await clickButton(page, buttons.createWorkspace)
// give workspace a unique name to avoid failure
await fillInput(
page,
"Workspace Name",
`workspace-${dayjs().format("MM-DD-hh-mm-ss")}`,
)
await clickButton(page, buttons.submitCreateWorkspace)
// stop workspace
await clickButton(page, buttons.stopWorkspace)
// start workspace
await clickButton(page, buttons.startWorkspace)
const stopButton = page.getByRole("button", {
name: buttons.stopWorkspace,
exact: true,
})
await expect(stopButton).toBeEnabled({ timeout: 60_000 })
})