diff --git a/backend/src/app.module.ts b/backend/src/app.module.ts index acbebac7..2410d666 100644 --- a/backend/src/app.module.ts +++ b/backend/src/app.module.ts @@ -9,7 +9,7 @@ import { WorkspacesModule } from "./workspaces/workspaces.module"; import { WorkspaceUsersModule } from "./workspace-users/workspace-users.module"; import { WorkspaceDocumentsModule } from "./workspace-documents/workspace-documents.module"; import { DocumentsModule } from "./documents/documents.module"; -import { CheckModule } from './check/check.module'; +import { CheckModule } from "./check/check.module"; @Module({ imports: [ diff --git a/backend/src/check/check.controller.spec.ts b/backend/src/check/check.controller.spec.ts index 5753bc5a..1bd765cf 100644 --- a/backend/src/check/check.controller.spec.ts +++ b/backend/src/check/check.controller.spec.ts @@ -1,18 +1,18 @@ -import { Test, TestingModule } from '@nestjs/testing'; -import { CheckController } from './check.controller'; +import { Test, TestingModule } from "@nestjs/testing"; +import { CheckController } from "./check.controller"; -describe('CheckController', () => { - let controller: CheckController; +describe("CheckController", () => { + let controller: CheckController; - beforeEach(async () => { - const module: TestingModule = await Test.createTestingModule({ - controllers: [CheckController], - }).compile(); + beforeEach(async () => { + const module: TestingModule = await Test.createTestingModule({ + controllers: [CheckController], + }).compile(); - controller = module.get(CheckController); - }); + controller = module.get(CheckController); + }); - it('should be defined', () => { - expect(controller).toBeDefined(); - }); + it("should be defined", () => { + expect(controller).toBeDefined(); + }); }); diff --git a/backend/src/check/check.controller.ts b/backend/src/check/check.controller.ts index 1ef8045c..52d4f56f 100644 --- a/backend/src/check/check.controller.ts +++ b/backend/src/check/check.controller.ts @@ -1,4 +1,4 @@ -import { Controller } from '@nestjs/common'; +import { Controller } from "@nestjs/common"; -@Controller('check') +@Controller("check") export class CheckController {} diff --git a/backend/src/check/check.module.ts b/backend/src/check/check.module.ts index 75e50d9f..80a2f3ea 100644 --- a/backend/src/check/check.module.ts +++ b/backend/src/check/check.module.ts @@ -1,9 +1,9 @@ -import { Module } from '@nestjs/common'; -import { CheckService } from './check.service'; -import { CheckController } from './check.controller'; +import { Module } from "@nestjs/common"; +import { CheckService } from "./check.service"; +import { CheckController } from "./check.controller"; @Module({ - providers: [CheckService], - controllers: [CheckController] + providers: [CheckService], + controllers: [CheckController], }) export class CheckModule {} diff --git a/backend/src/check/check.service.spec.ts b/backend/src/check/check.service.spec.ts index 20e646b8..8d4b4c8d 100644 --- a/backend/src/check/check.service.spec.ts +++ b/backend/src/check/check.service.spec.ts @@ -1,18 +1,18 @@ -import { Test, TestingModule } from '@nestjs/testing'; -import { CheckService } from './check.service'; +import { Test, TestingModule } from "@nestjs/testing"; +import { CheckService } from "./check.service"; -describe('CheckService', () => { - let service: CheckService; +describe("CheckService", () => { + let service: CheckService; - beforeEach(async () => { - const module: TestingModule = await Test.createTestingModule({ - providers: [CheckService], - }).compile(); + beforeEach(async () => { + const module: TestingModule = await Test.createTestingModule({ + providers: [CheckService], + }).compile(); - service = module.get(CheckService); - }); + service = module.get(CheckService); + }); - it('should be defined', () => { - expect(service).toBeDefined(); - }); + it("should be defined", () => { + expect(service).toBeDefined(); + }); }); diff --git a/backend/src/check/check.service.ts b/backend/src/check/check.service.ts index a799f8b0..cafe93f4 100644 --- a/backend/src/check/check.service.ts +++ b/backend/src/check/check.service.ts @@ -1,4 +1,4 @@ -import { Injectable } from '@nestjs/common'; +import { Injectable } from "@nestjs/common"; @Injectable() export class CheckService {}