})
it('Should fail with a long description', async function () {
- const fields = immutableAssign(baseCorrectParams, { description: 'super'.repeat(60) })
+ const fields = immutableAssign(baseCorrectParams, { description: 'super'.repeat(150) })
await makePostBodyRequest({ url: server.url, path: videoChannelPath, token: server.accessToken, fields })
})
it('Should fail with a long support text', async function () {
- const fields = immutableAssign(baseCorrectParams, { support: 'super'.repeat(70) })
+ const fields = immutableAssign(baseCorrectParams, { support: 'super'.repeat(150) })
await makePostBodyRequest({ url: server.url, path: videoChannelPath, token: server.accessToken, fields })
})
})
it('Should fail with a long description', async function () {
- const fields = immutableAssign(baseCorrectParams, { description: 'super'.repeat(60) })
+ const fields = immutableAssign(baseCorrectParams, { description: 'super'.repeat(150) })
await makePutBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
it('Should fail with a long support text', async function () {
- const fields = immutableAssign(baseCorrectParams, { support: 'super'.repeat(70) })
+ const fields = immutableAssign(baseCorrectParams, { support: 'super'.repeat(150) })
await makePutBodyRequest({ url: server.url, path, token: server.accessToken, fields })
})
})
it('Should fail with a long support text', async function () {
- const fields = immutableAssign(baseCorrectParams, { support: 'super'.repeat(70) })
+ const fields = immutableAssign(baseCorrectParams, { support: 'super'.repeat(150) })
const attaches = baseCorrectAttaches
await makeUploadRequest({ url: server.url, path: path + '/upload', token: server.accessToken, fields, attaches })
})
it('Should fail with a long support text', async function () {
- const fields = immutableAssign(baseCorrectParams, { support: 'super'.repeat(70) })
+ const fields = immutableAssign(baseCorrectParams, { support: 'super'.repeat(150) })
await makePutBodyRequest({ url: server.url, path: path + videoId, token: server.accessToken, fields })
})