Skip to content

Commit

Permalink
refactor: removed unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertoBaroso committed Jan 21, 2024
1 parent 74d1a9c commit 598f2dc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { createMockAbility } from '@hkrecruitment/shared/abilities.spec';
import { RecruitmentSessionController } from './recruitment-session.controller';
import { RecruitmentSessionService } from './recruitment-session.service';
import { Action, RecruitmentSessionState, Role } from '@hkrecruitment/shared';
import { Action, RecruitmentSessionState } from '@hkrecruitment/shared';
import { TestBed } from '@automock/jest';
import { RecruitmentSessionResponseDto } from './recruitment-session-response.dto';
import { RecruitmentSession } from './recruitment-session.entity';
Expand All @@ -12,16 +12,10 @@ import {
testDate,
} from '@mocks/data';
import {
BadRequestException,
ConflictException,
Delete,
ForbiddenException,
NotFoundException,
UnprocessableEntityException,
} from '@nestjs/common';
import { createMock } from '@golevelup/ts-jest';
import { AuthenticatedRequest } from 'src/authorization/authenticated-request.types';
import { CreateRecruitmentSessionDto } from './create-recruitment-session.dto';
import { UpdateRecruitmentSessionDto } from './update-recruitment-session.dto';

describe('RecruitmentSessionController', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import {
Body,
Controller,
BadRequestException,
NotFoundException,
ConflictException,
Param,
Expand Down

0 comments on commit 598f2dc

Please sign in to comment.