Merge pull request #12434 from nocodb/test/vertical-fill

fix: fill handle
This commit is contained in:
Mert E.
2025-10-05 06:46:55 +03:00
committed by GitHub

View File

@@ -3,6 +3,7 @@ import setup, { NcContext, unsetup } from '../../../setup';
import { DashboardPage } from '../../../pages/Dashboard';
import { Api } from 'nocodb-sdk';
import { createDemoTable } from '../../../setup/demoTable';
import { isMysql } from '../../../setup/db';
interface paramsType {
dashboard: DashboardPage;
@@ -102,6 +103,10 @@ test.describe('Fill Handle', () => {
});
test('Number based', async () => {
if (isMysql(p.context)) {
test.skip();
}
const fields = [
{ title: 'Number', value: 33, type: 'text' },
{ title: 'Decimal', value: 33.3, type: 'text' },
@@ -114,7 +119,7 @@ test.describe('Fill Handle', () => {
];
// kludge: insert time from browser until mysql issue with timezone is fixed
await p.dashboard.grid.cell.time.set({ index: 0, columnHeader: 'Time', value: '02:02' });
// await p.dashboard.grid.cell.time.set({ index: 0, columnHeader: 'Time', value: '02:02' });
// set rating for first record
await p.dashboard.grid.cell.rating.select({ index: 0, columnHeader: 'Rating', rating: 3 });