Browse Source

fix(playwright): incorrect time format

pull/5306/head
Wing-Kam Wong 2 years ago
parent
commit
260e930637
  1. 18
      tests/playwright/setup/xcdb-records.ts

18
tests/playwright/setup/xcdb-records.ts

@ -41,16 +41,16 @@ const rowMixedValue = (column: ColumnType, index: number) => {
const decimals = [33.3, 456.34, 333.3, null, 267.5674, 34.0, 8754.0, 3234.547, 44.2647, 33.98, null];
const duration = [60, 120, 180, 3600, 3660, 3720, null, 3780, 60, 120, null];
const time = [
'02:02:00',
'20:20:20',
'04:04:00',
'02:02:00',
'20:20:20',
'18:18:18',
'1999-01-01 02:02:00+08:00',
'1999-01-01 20:20:20+08:00',
'1999-01-01 04:04:00+08:00',
'1999-01-01 02:02:00+08:00',
'1999-01-01 20:20:20+08:00',
'1999-01-01 18:18:18+08:00',
null,
'02:02:00',
'20:20:20',
'18:18:18',
'1999-01-01 02:02:00+08:00',
'1999-01-01 20:20:20+08:00',
'1999-01-01 18:18:18+08:00',
null,
];
const rating = [0, 1, 2, 3, null, 0, 4, 5, 0, 1, null];

Loading…
Cancel
Save