Skip to content

Commit

Permalink
Skip test
Browse files Browse the repository at this point in the history
  • Loading branch information
catalin-oancea committed Dec 17, 2024
1 parent 8d0af72 commit fd86db5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions api/src/modules/custom-projects/custom-projects.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ export class CustomProjectsService extends AppBaseService<
}

async create(dto: CreateCustomProjectDto): Promise<any> {
console.log('>>>>>>>>>>>>>>> DTO', dto);
const { countryCode, ecosystem, activity } = dto;
const {
additionalBaseData,
Expand Down Expand Up @@ -75,7 +74,6 @@ export class CustomProjectsService extends AppBaseService<
projectInput,
costOutput,
);
console.log('>>>>>>>>>>>>>>> CUSTOM PROJECT', customProject);

return customProject;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit fd86db5

Please sign in to comment.