aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rwxr-xr-xscripts/ci.sh4
-rw-r--r--server/tests/plugins/filter-hooks.ts2
2 files changed, 5 insertions, 1 deletions
diff --git a/scripts/ci.sh b/scripts/ci.sh
index 8fdbe8f26..8b984093c 100755
--- a/scripts/ci.sh
+++ b/scripts/ci.sh
@@ -56,6 +56,10 @@ elif [ "$1" = "client" ]; then
56 56
57 MOCHA_PARALLEL=true runTest "$1" $((2*$speedFactor)) $feedsFiles $helperFiles $miscFiles $pluginFiles $libFiles 57 MOCHA_PARALLEL=true runTest "$1" $((2*$speedFactor)) $feedsFiles $helperFiles $miscFiles $pluginFiles $libFiles
58elif [ "$1" = "cli-plugin" ]; then 58elif [ "$1" = "cli-plugin" ]; then
59 # Simulate HTML
60 mkdir -p "./client/dist/en-US/"
61 cp "./client/src/index.html" "./client/dist/en-US/index.html"
62
59 npm run build:server 63 npm run build:server
60 npm run setup:cli 64 npm run setup:cli
61 65
diff --git a/server/tests/plugins/filter-hooks.ts b/server/tests/plugins/filter-hooks.ts
index 43749b0b5..a02a53c50 100644
--- a/server/tests/plugins/filter-hooks.ts
+++ b/server/tests/plugins/filter-hooks.ts
@@ -32,7 +32,7 @@ describe('Test plugin filter hooks', function () {
32 let videoPlaylistUUID: string 32 let videoPlaylistUUID: string
33 33
34 before(async function () { 34 before(async function () {
35 this.timeout(60000) 35 this.timeout(120000)
36 36
37 servers = await createMultipleServers(2) 37 servers = await createMultipleServers(2)
38 await setAccessTokensToServers(servers) 38 await setAccessTokensToServers(servers)