Skip to content

Commit

Permalink
fixed issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ArslanKamchybekov committed Sep 12, 2024
1 parent 11ffef7 commit 6cd71a7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions backend/src/user/user.controller.spec.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
import { Test, TestingModule } from '@nestjs/testing';
import { InsuranceController } from './user.controller';
import { InsuranceService } from './user.service';
import { UserController } from './user.controller';
import { UserService } from './user.service';

describe('InsuranceController', () => {
let controller: InsuranceController;
describe('UserController', () => {
let controller: UserController;

beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [InsuranceController],
providers: [InsuranceService],
controllers: [UserController],
providers: [UserService],
}).compile();

controller = module.get<InsuranceController>(InsuranceController);
controller = module.get<UserController>(UserController);
});

it('should be defined', () => {
Expand Down

0 comments on commit 6cd71a7

Please sign in to comment.