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)