]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Fix check comments params unit tests
authorChocobozzz <me@florianbigard.com>
Mon, 26 Mar 2018 07:48:10 +0000 (09:48 +0200)
committerChocobozzz <me@florianbigard.com>
Mon, 26 Mar 2018 07:48:20 +0000 (09:48 +0200)
client/src/app/shared/forms/form-validators/video-comment.ts
server/tests/api/check-params/video-comments.ts

index 42a97e3005c02cb157d7e36a2d26472131cf4cfb..290d83195b48a97bd731e9936fbd291eef80296c 100644 (file)
@@ -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.',
index 3fde9bd947f8e6c272f6449da7cf52fe6654e9f9..5241832fead9f4920007cd0d2e62a44dafaf98a4 100644 (file)
@@ -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 })
     })