mirror of
https://github.com/coder/coder.git
synced 2026-06-05 22:18:20 +00:00
d9668f7a4e
* 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)
|
|
}
|
|
}
|