Fix redundancy with HLS only files

This commit is contained in:
Chocobozzz
2021-02-01 11:18:50 +01:00
parent 33c7131be5
commit 7448551fe5
3 changed files with 131 additions and 58 deletions

View File

@@ -338,7 +338,7 @@ async function checkVideoFilesWereRemoved (
const files = await readdir(directoryPath)
for (const file of files) {
expect(file).to.not.contain(videoUUID)
expect(file, `File ${file} should not exist in ${directoryPath}`).to.not.contain(videoUUID)
}
}
}