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

pull/4963/head
Dax Raad 2025-12-01 16:37:54 -05:00
parent c950d59047
commit 993422c6af
1 changed files with 0 additions and 7 deletions

View File

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