}
it('Should succeed import with the appropriate proxy config', async function () {
- this.timeout(40000)
+ this.timeout(120000)
await servers[0].kill()
await servers[0].run({}, { env: goodEnv })
})
it('Should fail import with a wrong proxy config', async function () {
- this.timeout(40000)
+ this.timeout(120000)
await servers[0].kill()
await servers[0].run({}, { env: badEnv })
describe('Should seed the uploaded video', function () {
it('Should add the file 1 by asking server 3', async function () {
- this.timeout(10000)
+ this.timeout(30000)
const { data } = await servers[2].videos.list()
})
it('Should add the file 2 by asking server 1', async function () {
- this.timeout(10000)
+ this.timeout(30000)
const { data } = await servers[0].videos.list()
})
it('Should add the file 3 by asking server 2', async function () {
- this.timeout(10000)
+ this.timeout(30000)
const { data } = await servers[1].videos.list()
})
it('Should add the file 3-2 by asking server 1', async function () {
- this.timeout(10000)
+ this.timeout(30000)
const { data } = await servers[0].videos.list()
})
it('Should add the file 2 in 360p by asking server 1', async function () {
- this.timeout(10000)
+ this.timeout(30000)
const { data } = await servers[0].videos.list()
let updatedAtMin: Date
it('Should update video 3', async function () {
- this.timeout(10000)
+ this.timeout(30000)
const attributes = {
name: 'my super video updated',
})
it('Should have the video 3 updated on each server', async function () {
- this.timeout(10000)
+ this.timeout(30000)
for (const server of servers) {
const { data } = await server.videos.list()
})
it('Should only update thumbnail and update updatedAt attribute', async function () {
- this.timeout(10000)
+ this.timeout(30000)
const attributes = {
thumbnailfile: 'thumbnail.jpg'
})
it('Should delete a reply', async function () {
- this.timeout(10000)
+ this.timeout(30000)
await servers[2].comments.delete({ videoId: videoUUID, commentId: childOfFirstChild.comment.id })
})
it('Should delete the thread comments', async function () {
- this.timeout(10000)
+ this.timeout(30000)
const { data } = await servers[0].comments.listThreads({ videoId: videoUUID })
const commentId = data.find(c => c.text === 'my super first comment').id
USER peertube
-RUN yarn install --pure-lockfile --network-timeout 1200000 \
+RUN yarn install --pure-lockfile --network-timeout 1200000 --network-concurrency 20 \
&& npm run build -- $NPM_RUN_BUILD_OPTS \
&& rm -r ./node_modules ./client/node_modules \
- && yarn install --pure-lockfile --production --network-timeout 1200000 \
+ && yarn install --pure-lockfile --production --network-timeout 1200000 --network-concurrency 20 \
&& yarn cache clean
USER root