fix(backend): typeormのbreaking changeに対応 (#16105)

* fix(backend): typeormのbreaking changeに対応

* attempt to fix test
This commit is contained in:
かっこかり
2025-05-27 13:50:45 +09:00
committed by GitHub
parent 47f4f11e3e
commit 07c2de3749
11 changed files with 27 additions and 27 deletions

View File

@@ -95,8 +95,8 @@ describe('UserWebhookService', () => {
}
async function afterEachImpl() {
await usersRepository.delete({});
await userWebhooksRepository.delete({});
await usersRepository.createQueryBuilder().delete().execute();
await userWebhooksRepository.createQueryBuilder().delete().execute();
}
// --------------------------------------------------------------------------------------