Browse Source

test: invalid context object usage

Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
pull/5642/head
Raju Udava 2 years ago
parent
commit
a5ae50afc0
  1. 7
      tests/playwright/tests/db/timezone.spec.ts

7
tests/playwright/tests/db/timezone.spec.ts

@ -738,13 +738,12 @@ test.describe('Ext DB MySQL : DB Timezone configured as HKT', () => {
let dashboard: DashboardPage;
let context: any;
if (!isMysql(context)) {
return;
}
test.beforeEach(async ({ page }) => {
context = await setup({ page, isEmptyProject: true });
dashboard = new DashboardPage(page, context.project);
if (!isMysql(context)) {
return;
}
api = new Api({
baseURL: `http://localhost:8080/`,

Loading…
Cancel
Save