From e73638f857f595ed3521aea34e6f705408fc120a Mon Sep 17 00:00:00 2001 From: PauI Ostrovckij Date: Mon, 16 Jun 2025 17:02:00 +0000 Subject: [PATCH] [test] remove utils.sleep --- tests/integration/withServerInstance/storage.tests.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/integration/withServerInstance/storage.tests.js b/tests/integration/withServerInstance/storage.tests.js index b95f44af..f2e61d36 100644 --- a/tests/integration/withServerInstance/storage.tests.js +++ b/tests/integration/withServerInstance/storage.tests.js @@ -219,10 +219,8 @@ function runTestForDir(ctx, isMultitenantMode, specialDir) { let output, outputText; output = await storage.createReadStream(ctx, testFile1, specialDir); - await utils.sleep(100); expect(output.contentLength).toEqual(testFileData1.length); outputText = await utils.stream2Buffer(output.readStream); - await utils.sleep(100); expect(outputText.toString("utf8")).toEqual(testFileData1); output = await storage.createReadStream(ctx, testFile2, specialDir);