From fd86db591f6b465972da0b4bfd26ed8173929fe0 Mon Sep 17 00:00:00 2001 From: Catalin Oancea Date: Tue, 17 Dec 2024 08:50:16 +0200 Subject: [PATCH] Skip test --- api/src/modules/custom-projects/custom-projects.service.ts | 2 -- .../custom-projects/custom-projects-create.spec.ts | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/api/src/modules/custom-projects/custom-projects.service.ts b/api/src/modules/custom-projects/custom-projects.service.ts index e2eaeda6..e68daf65 100644 --- a/api/src/modules/custom-projects/custom-projects.service.ts +++ b/api/src/modules/custom-projects/custom-projects.service.ts @@ -43,7 +43,6 @@ export class CustomProjectsService extends AppBaseService< } async create(dto: CreateCustomProjectDto): Promise { - console.log('>>>>>>>>>>>>>>> DTO', dto); const { countryCode, ecosystem, activity } = dto; const { additionalBaseData, @@ -75,7 +74,6 @@ export class CustomProjectsService extends AppBaseService< projectInput, costOutput, ); - console.log('>>>>>>>>>>>>>>> CUSTOM PROJECT', customProject); return customProject; } diff --git a/api/test/integration/custom-projects/custom-projects-create.spec.ts b/api/test/integration/custom-projects/custom-projects-create.spec.ts index c44c6e38..c532783f 100644 --- a/api/test/integration/custom-projects/custom-projects-create.spec.ts +++ b/api/test/integration/custom-projects/custom-projects-create.spec.ts @@ -16,8 +16,8 @@ describe('Create Custom Projects - Setup', () => { await testManager.close(); }); - describe('TEMPORAL, FOR REFERENCE', () => { - test.only('Should generate a conservation project input object that will be used for calculations', async () => { + describe.skip('TEMPORAL, FOR REFERENCE', () => { + test('Should generate a conservation project input object that will be used for calculations', async () => { const response = await testManager .request() .post(customProjectContract.createCustomProject.path)