Files
coder/site/e2e/tests/createWorkspace.spec.ts
T
Kyle Carberry d434181941 feat: add cohesive e2e tests for the web terminal, apps, and workspaces (#8140)
* feat: add cohesive e2e tests for the web terminal, apps, and workspaces

* Fix web terminal flake
2023-06-22 00:21:40 +00:00

20 lines
409 B
TypeScript

import { test } from "@playwright/test"
import { createTemplate, createWorkspace } from "../helpers"
test("create workspace", async ({ page }) => {
const template = await createTemplate(page, {
apply: [
{
complete: {
resources: [
{
name: "example",
},
],
},
},
],
})
await createWorkspace(page, template)
})