Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
BeArchiTek committed Mar 3, 2025
1 parent 1f30785 commit c811cf0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions frontend/app/tests/e2e/activity-log/global-activity-log.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ test.describe("Global Activity Log - List view and filter usage", () => {
});

await test.step("Choose filters", async () => {
await page.getByRole('button', { name: 'Primary Node' }).click();
await page.getByPlaceholder('Filter...').fill('tag');
await page.getByRole('option', { name: 'Tag' }).click();
await page.getByRole('option', { name: 'blue' }).click();
await page.getByRole('button', { name: 'Apply' }).click();
await page.getByRole("button", { name: "Primary Node" }).click();
await page.getByPlaceholder("Filter...").fill("tag");
await page.getByRole("option", { name: "Tag" }).click();
await page.getByRole("option", { name: "blue" }).click();
await page.getByRole("button", { name: "Apply" }).click();

await expect(page.getByLabel('Primary Node contains [object').getByRole('button')).toContainText('blue');
await expect(page.getByLabel("Primary Node contains [object").getByRole("button")).toContainText("blue");
await saveScreenshotForDocs(page, "activity_log_global_filters_primary");
});
});
Expand Down

0 comments on commit c811cf0

Please sign in to comment.