Marcio Bera

Results 2 comments of Marcio Bera

It worked for me just passing the callback `done` at the `end(done)` of the last test, like that: ``` it('title...', done => { return request(app.getHttpServer()) ... .end(done); }); ```

This works for me: ``` import { IsOptional, IsString, MaxLength } from 'class-validator'; import { targetConstructorToSchema } from 'class-validator-jsonschema'; class BlogPost { @IsString() id: string @IsOptional() @MaxLength(20, { each: true...