Просмотр исходного кода

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

Dax Raad 2 месяцев назад
Родитель
Сommit
993422c6af
1 измененных файлов с 0 добавлено и 7 удалено
  1. 0 7
      packages/enterprise/test/core/share.test.ts

+ 0 - 7
packages/enterprise/test/core/share.test.ts

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