mirror of https://github.com/Chocobozzz/PeerTube
Fix check comments params unit tests
parent
ae09ed2c6a
commit
53eb90c0ab
|
@ -1,7 +1,7 @@
|
|||
import { Validators } from '@angular/forms'
|
||||
|
||||
export const VIDEO_COMMENT_TEXT = {
|
||||
VALIDATORS: [ Validators.required, Validators.minLength(2), Validators.maxLength(3000) ],
|
||||
VALIDATORS: [ Validators.required, Validators.minLength(1), Validators.maxLength(3000) ],
|
||||
MESSAGES: {
|
||||
'required': 'Comment is required.',
|
||||
'minlength': 'Comment must be at least 2 characters long.',
|
||||
|
|
|
@ -117,7 +117,7 @@ describe('Test video comments API validator', function () {
|
|||
|
||||
it('Should fail with a short comment', async function () {
|
||||
const fields = {
|
||||
text: 'h'.repeat(3001)
|
||||
text: ''
|
||||
}
|
||||
await makePostBodyRequest({ url: server.url, path: pathThread, token: server.accessToken, fields })
|
||||
})
|
||||
|
@ -160,7 +160,7 @@ describe('Test video comments API validator', function () {
|
|||
|
||||
it('Should fail with a short comment', async function () {
|
||||
const fields = {
|
||||
text: 'h'.repeat(3001)
|
||||
text: ''
|
||||
}
|
||||
await makePostBodyRequest({ url: server.url, path: pathComment, token: server.accessToken, fields })
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue