mirror of
https://github.com/coder/coder.git
synced 2026-06-05 05:58:20 +00:00
d434181941
* feat: add cohesive e2e tests for the web terminal, apps, and workspaces * Fix web terminal flake
20 lines
409 B
TypeScript
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)
|
|
})
|