Skip to content

Commit f523d56

Browse files
authored
fix: missing code coverage import in test-file (openobserve#7013)
1 parent f3756b7 commit f523d56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/ui-testing/playwright-tests/dashboards/visualize.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { test, expect } from "@playwright/test";
1+
import { test, expect } from "../baseFixtures";
22
import { login } from "../utils/dashLogin";
33
import { ingestion } from "../utils/dashIngestion";
44
import logsdata from "../../../test-data/logs_data.json";
@@ -313,7 +313,7 @@ test.describe("logs testcases", () => {
313313
// Enter an invalid query into the search bar
314314
await page
315315
.locator('[data-test="logs-search-bar-query-editor"]')
316-
.locator('.inputarea')
316+
.locator(".inputarea")
317317
.fill("select from user whare ID =1");
318318

319319
// Refresh the search

0 commit comments

Comments
 (0)