aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/shared/directories.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests/shared/directories.ts')
-rw-r--r--server/tests/shared/directories.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/server/tests/shared/directories.ts b/server/tests/shared/directories.ts
index 4f4282554..22578bc0e 100644
--- a/server/tests/shared/directories.ts
+++ b/server/tests/shared/directories.ts
@@ -5,6 +5,7 @@ import { pathExists, readdir } from 'fs-extra'
5import { homedir } from 'os' 5import { homedir } from 'os'
6import { join } from 'path' 6import { join } from 'path'
7import { PeerTubeServer } from '@shared/server-commands' 7import { PeerTubeServer } from '@shared/server-commands'
8import { PeerTubeRunnerProcess } from './peertube-runner-process'
8 9
9export async function checkTmpIsEmpty (server: PeerTubeServer) { 10export async function checkTmpIsEmpty (server: PeerTubeServer) {
10 await checkDirectoryIsEmpty(server, 'tmp', [ 'plugins-global.css', 'hls', 'resumable-uploads' ]) 11 await checkDirectoryIsEmpty(server, 'tmp', [ 'plugins-global.css', 'hls', 'resumable-uploads' ])
@@ -30,8 +31,8 @@ export async function checkDirectoryIsEmpty (server: PeerTubeServer, directory:
30 expect(filtered).to.have.lengthOf(0) 31 expect(filtered).to.have.lengthOf(0)
31} 32}
32 33
33export async function checkPeerTubeRunnerCacheIsEmpty () { 34export async function checkPeerTubeRunnerCacheIsEmpty (runner: PeerTubeRunnerProcess) {
34 const directoryPath = join(homedir(), '.cache', 'peertube-runner-nodejs', 'test', 'transcoding') 35 const directoryPath = join(homedir(), '.cache', 'peertube-runner-nodejs', runner.getId(), 'transcoding')
35 36
36 const directoryExists = await pathExists(directoryPath) 37 const directoryExists = await pathExists(directoryPath)
37 expect(directoryExists).to.be.true 38 expect(directoryExists).to.be.true