Browse Source

test: sqlite corrections for CI

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

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

@ -623,8 +623,16 @@ test.describe('External DB - DateTime column', async () => {
let expectedDateTimeWithTz = [];
if (isSqlite(context)) {
expectedDateTimeWithoutTz = ['2023-04-27 10:00:00', '2023-04-27 10:00:00+05:30', `2023-04-27 04:30:00+00:00`];
expectedDateTimeWithTz = ['2023-04-27 10:00:00', '2023-04-27 10:00:00+05:30', `2023-04-27 04:30:00+00:00`];
expectedDateTimeWithoutTz = [
'2023-04-27 10:00:00',
'2023-04-27 10:00:00+05:30',
getDateTimeInUTCTimeZone('2023-04-27 10:00:00+00:00'),
];
expectedDateTimeWithTz = [
'2023-04-27 10:00:00',
'2023-04-27 10:00:00+05:30',
getDateTimeInUTCTimeZone('2023-04-27 10:00:00+00:00'),
];
} else if (isPg(context)) {
expectedDateTimeWithoutTz = ['2023-04-27 10:00:00', '2023-04-27 10:00:00', '2023-04-27 10:00:00'];
expectedDateTimeWithTz = [

Loading…
Cancel
Save