Skip to content

Commit e2c5c45

Browse files
authored
v2.8.3 (#253)
* v2.8.3 * remove locator in setup * less flake * fix selector * deflake * wait for navigation in setup
1 parent a994699 commit e2c5c45

3 files changed

Lines changed: 7 additions & 11 deletions

File tree

e2e/global-setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ async function globalSetup(config: FullConfig) {
1717
await page.locator('input[name="password"]').press("Enter");
1818

1919
// Save signed-in state to 'storageState.json'
20-
await page.locator("text=Recent Workflows").waitFor();
20+
await page.waitForNavigation();
2121
await page.context().storageState({ path: "storageState.json" });
2222
await browser.close();
2323
}

e2e/tests/workflows.spec.ts

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,16 @@ test.describe("Workflows list", () => {
1111
await expect(page.locator("text=Recent Workflows")).toBeVisible();
1212
});
1313

14-
test("should render Workflow Executions table", async ({ page }) => {
15-
await expect(page.locator("text=cronWorkflow").first()).toBeVisible();
16-
});
17-
1814
test("should render Workflow Execution details", async ({ page }) => {
19-
await page.locator("text=temporal.canary.cron").first().click();
15+
await page.locator('a.workflow-summary-row').first().click();
2016

21-
await expect(page.locator("text=cronWorkflow").first()).toBeVisible();
22-
await expect(page.locator("text=canary-task-queue").first()).toBeVisible();
17+
await expect(page.locator("text=Workflow Type").first()).toBeVisible();
18+
await expect(page.locator("text=Task Queue").first()).toBeVisible();
2319
});
2420

2521
test("should render Workflow Execution Events", async ({ page }) => {
26-
await page.locator("text=temporal.canary.cron").first().click();
22+
await page.locator("a.workflow-summary-row").first().click();
2723

28-
await expect(page.locator("text=WorkflowTaskScheduled").first()).toBeVisible();
24+
await expect(page.locator('[data-cy="event-summary-row"]').first()).toBeVisible();
2925
});
3026
});

server/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ const (
2828
clientNameHeaderName = "client-name"
2929
clientNameHeaderValue = "temporal-ui"
3030
clientVersionHeaderName = "client-version"
31-
UIVersion = "2.8.2"
31+
UIVersion = "2.8.3"
3232
)

0 commit comments

Comments
 (0)