mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
* debounced search on type * loading workspaces on page entry * fixing e2e test * removing boilerplate
9 lines
262 B
TypeScript
9 lines
262 B
TypeScript
import { Page } from "@playwright/test"
|
|
import { BasePom } from "./BasePom"
|
|
|
|
export class WorkspacesPage extends BasePom {
|
|
constructor(baseURL: string | undefined, page: Page, params?: string) {
|
|
super(baseURL, `/workspaces${params && params}`, page)
|
|
}
|
|
}
|