Browse Source

fix: playwright test

pull/7611/head
DarkPhoenix2704 10 months ago
parent
commit
208a25d5d0
  1. 4
      tests/playwright/tests/db/views/viewCalendar.spec.ts

4
tests/playwright/tests/db/views/viewCalendar.spec.ts

@ -71,7 +71,7 @@ test.describe('View', () => {
} }
test.beforeEach(async ({ page }) => { test.beforeEach(async ({ page }) => {
context = await setup({ page, isEmptyProject: false }); context = await setup({ page, isEmptyProject: true });
dashboard = new DashboardPage(page, context.base); dashboard = new DashboardPage(page, context.base);
toolbar = toolbar = dashboard.calendar.toolbar; toolbar = toolbar = dashboard.calendar.toolbar;
topbar = dashboard.calendar.topbar; topbar = dashboard.calendar.topbar;
@ -409,7 +409,7 @@ test.describe('View', () => {
await calendar.sideMenu.verifySideBarRecords({ records: Array(12).fill('') }); await calendar.sideMenu.verifySideBarRecords({ records: Array(12).fill('') });
}); });
test('Calendar Operations Date Fields', async () => { test.only('Calendar Operations Date Fields', async () => {
await dashboard.grid.column.openEdit({ await dashboard.grid.column.openEdit({
title: 'StartDate', title: 'StartDate',
type: 'Date', type: 'Date',

Loading…
Cancel
Save