initial commit

This commit is contained in:
andres
2023-05-21 14:52:55 +02:00
parent 268ef59b3d
commit edc42e3750
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
import { IsEmail, IsString, Length, Max, Min } from 'class-validator';
import { IsEmail, IsString, Length } from 'class-validator';
export class CreateUserDto {
@IsEmail()

View File

@@ -1,7 +1,7 @@
import { Test, TestingModule } from '@nestjs/testing';
import { INestApplication } from '@nestjs/common';
import * as request from 'supertest';
import { AppModule } from './../src/app.module';
import { AppModule } from '../src/app.module';
describe('AppController (e2e)', () => {
let app: INestApplication;