Files
coder/site/e2e/pom/WorkspacesPage.ts
T
Kira Pilot d9668f7a4e add debounced search on type to the search bar (#2703)
* debounced search on type

* loading workspaces on page entry

* fixing e2e test

* removing boilerplate
2022-06-29 13:43:41 -04:00

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)
}
}