diff options
author | Chocobozzz <me@florianbigard.com> | 2023-05-22 09:20:28 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-05-22 09:22:08 +0200 |
commit | 33b91e53d21fba295ecf516b717fb36e91990771 (patch) | |
tree | c3e6c31636a47b64c164c1e91ee2125bbc61339e /server/tests/shared | |
parent | 679f8800cdc0ef925fae9ca26fb2892a8f475ad5 (diff) | |
download | PeerTube-33b91e53d21fba295ecf516b717fb36e91990771.tar.gz PeerTube-33b91e53d21fba295ecf516b717fb36e91990771.tar.zst PeerTube-33b91e53d21fba295ecf516b717fb36e91990771.zip |
Remove low timeouts
Default timeout is 30s
Diffstat (limited to 'server/tests/shared')
-rw-r--r-- | server/tests/shared/directories.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/tests/shared/directories.ts b/server/tests/shared/directories.ts index 22578bc0e..5ad12d78a 100644 --- a/server/tests/shared/directories.ts +++ b/server/tests/shared/directories.ts | |||
@@ -39,5 +39,5 @@ export async function checkPeerTubeRunnerCacheIsEmpty (runner: PeerTubeRunnerPro | |||
39 | 39 | ||
40 | const files = await readdir(directoryPath) | 40 | const files = await readdir(directoryPath) |
41 | 41 | ||
42 | expect(files).to.have.lengthOf(0) | 42 | expect(files, 'Directory content: ' + files.join(', ')).to.have.lengthOf(0) |
43 | } | 43 | } |