Skip to content

Commit ba505b3

Browse files
committed
Fix search textbox input and update browser matrix in deployment: correct input text for AWS Root and limit browser testing to Chromium
1 parent 1a35169 commit ba505b3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
browser: [chromium, firefox, webkit]
20+
browser: [chromium]
2121

2222
steps:
2323
- name: Checkout repository

tests/browser.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ test.describe("Conversion", () => {
88
await page.getByRole("button", { name: "Close" }).first().click();
99
await page.getByRole("button", { name: "Browser" }).click();
1010
await page.getByRole("textbox", { name: "Search across rules..." }).click();
11-
await page.getByRole("textbox", { name: "Search across rules..." }).fill("AWS ROOT");
11+
await page.getByRole("textbox", { name: "Search across rules..." }).fill("AWS Root");
1212
await page
13-
.getByText("AWS Root CredentialsmediumtestDetects AWS root account usageawscloudtrail")
13+
.getByText("AWS Root Credentials")
1414
.click();
1515
await page.getByRole("button", { name: "Import to Studio" }).click();
1616
await expect(page.locator("#siem-query-editor")).toContainText(

0 commit comments

Comments
 (0)