update args type for FT data creation (#2330)

This commit is contained in:
BChoudhury-ms
2026-01-21 15:59:26 +05:30
committed by GitHub
parent f02611c90e
commit 80ad5f10d4

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;
});