Allow configuring environmental variables in panel (#626)

- [ ] Add test cases
This commit is contained in:
Will Chen
2025-07-11 10:52:52 -07:00
committed by GitHub
parent 4b84b12fe3
commit 2c284d0f20
18 changed files with 1212 additions and 7 deletions

View File

@@ -422,7 +422,7 @@ export class PageObject {
// Preview panel
////////////////////////////////
async selectPreviewMode(mode: "code" | "problems" | "preview") {
async selectPreviewMode(mode: "code" | "problems" | "preview" | "configure") {
await this.page.getByTestId(`${mode}-mode-button`).click();
}