fix(core): Fix truncate table names (#18867)

This commit is contained in:
Guillaume Jacquart
2025-08-27 17:02:54 +02:00
committed by GitHub
parent 0c803a63e4
commit 215d5a1eca

View File

@@ -13,7 +13,7 @@ beforeAll(async () => {
});
beforeEach(async () => {
await testDb.truncate(['DataStore', 'DataStoreColumn']);
await testDb.truncate(['DataTable', 'DataTableColumn']);
});
afterAll(async () => {