Skip to content

Commit

Permalink
adds latest migration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulbarwal committed Dec 26, 2024
1 parent fe80ca5 commit 0289d1f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions app/client/packages/dsl/src/migrate/tests/DSLMigration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ import * as m86 from "../migrations/086-migrate-table-server-side-filtering";
import * as m87 from "../migrations/087-migrate-chart-widget-customechartdata";
import * as m88 from "../migrations/088-migrate-custom-widget-dynamic-height";
import * as m89 from "../migrations/089-migrage-table-widget-v2-currentRow-binding";
import * as m90 from "../migrations/090-migrate-table-widget-v2-validation-try-catch";

interface Migration {
functionLookup: {
Expand Down Expand Up @@ -930,6 +931,15 @@ const migrations: Migration[] = [
],
version: 89,
},
{
functionLookup: [
{
moduleObj: m90,
functionName: "migrateTableWidgetV2ValidationTryCatch",
},
],
version: 90,
},
];

const mockFnObj: Record<number, any> = {};
Expand Down

0 comments on commit 0289d1f

Please sign in to comment.