mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
Increase video comments limit
This commit is contained in:
@@ -133,7 +133,7 @@ describe('Test video comments API validator', function () {
|
||||
|
||||
it('Should fail with a long comment', async function () {
|
||||
const fields = {
|
||||
text: 'h'.repeat(3001)
|
||||
text: 'h'.repeat(10001)
|
||||
}
|
||||
await makePostBodyRequest({ url: server.url, path: pathThread, token: server.accessToken, fields })
|
||||
})
|
||||
@@ -176,7 +176,7 @@ describe('Test video comments API validator', function () {
|
||||
|
||||
it('Should fail with a long comment', async function () {
|
||||
const fields = {
|
||||
text: 'h'.repeat(3001)
|
||||
text: 'h'.repeat(10001)
|
||||
}
|
||||
await makePostBodyRequest({ url: server.url, path: pathComment, token: server.accessToken, fields })
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user