We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6b25c4 commit 20b4d8dCopy full SHA for 20b4d8d
dashboard/src/tests/e2e/project.test.ts
@@ -37,10 +37,11 @@ test("routes to the selected pipeline page after clicking on the selected pipeli
37
});
38
await pipelineLink.click();
39
40
- const pipelineMetadataHeading = page.getByRole("heading", {
41
- name: `Pipeline #${pipelineId} metadata`
42
- });
43
- await expect(pipelineMetadataHeading).toBeVisible();
+ await expect(
+ page.getByRole("heading", {
+ name: `Pipeline #${pipelineId} metadata`
+ })
44
+ ).toBeVisible();
45
46
47
test("routes to the selected run page after clicking on the selected run link", async ({
0 commit comments