Compare commits

...

1 Commits

Author SHA1 Message Date
Bikram Choudhury
d2f18ddef4 update args type for FT data creation 2026-01-16 11:45:15 +05:30

View File

@@ -10,7 +10,7 @@ let CONTAINER_ID: string;
// Set up test database and container with data before all tests
test.beforeAll(async () => {
testContainer = await createTestSQLContainer(true);
testContainer = await createTestSQLContainer({ includeTestData: true });
DATABASE_ID = testContainer.database.id;
CONTAINER_ID = testContainer.container.id;
});