core: prevent share tests from cleaning up storage used by other tests

This commit is contained in:
Dax Raad
2025-12-01 16:37:54 -05:00
parent 0cd65a5147
commit c7445952e5
@@ -259,11 +259,4 @@ describe.concurrent("core.share", () => {
await Share.remove({ id: share.id, secret: share.secret })
})
afterAll(async () => {
const files = await Storage.list()
for (const file of files) {
Storage.remove(file)
}
})
})