Browse Source

test: leap year fix

pull/7752/head
Raju Udava 7 months ago
parent
commit
fea546cdf8
  1. 11
      tests/playwright/tests/db/features/filters.spec.ts

11
tests/playwright/tests/db/features/filters.spec.ts

@ -788,6 +788,15 @@ test.describe('Filter Tests: Date based', () => {
}
// "is within" filter list
// if today is Feb 29, then past year will have 1 more record and next year will have 1 less record
const dateToday = new Date();
if (dateToday.getMonth() === 1 && dateToday.getDate() === 29) {
// past year
isWithinFilterList[2].rowCount += 1;
// next year
isWithinFilterList[5].rowCount -= 1;
}
for (let i = 0; i < isWithinFilterList.length; i++) {
await verifyFilter_withFixedModal({
column: dataType,
@ -839,7 +848,7 @@ test.describe('Filter Tests: Date based', () => {
await dateTimeBasedFilterTest('Date', 0);
});
test('Date : filters-2', async () => {
test.only('Date : filters-2', async () => {
await dateTimeBasedFilterTest('Date', 1);
});
});

Loading…
Cancel
Save