]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/tests/api/videos/video-imports.ts
Increase timeout
[github/Chocobozzz/PeerTube.git] / server / tests / api / videos / video-imports.ts
index 37c459d762436204aad38581bc75a77120669917..b6168b54e2df34f0389085d237f452ede220c48e 100644 (file)
@@ -2,7 +2,7 @@
 
 import 'mocha'
 import { expect } from 'chai'
-import { pathExists, remove } from 'fs-extra'
+import { pathExists, readdir, remove } from 'fs-extra'
 import { join } from 'path'
 import {
   areHttpImportTestsDisabled,
@@ -416,7 +416,11 @@ describe('Test video imports', function () {
 
       await quickPeerTubeImport()
 
-      expect(await pathExists(join(server.servers.buildDirectory('bin'), releaseName))).to.be.true
+      const base = server.servers.buildDirectory('bin')
+      const content = await readdir(base)
+      const binaryPath = join(base, releaseName)
+
+      expect(await pathExists(binaryPath), `${binaryPath} does not exist in ${base} (${content.join(', ')})`).to.be.true
     }
 
     before(async function () {