Skip to content

Commit 72dcd76

Browse files
committed
WIP auth module
1 parent 20b00fb commit 72dcd76

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

service/src/core/auth/auth.controller.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import { DeleteResult } from 'mongodb'
22
import { Test, TestingModule } from '@nestjs/testing'
33
import { AuthController } from './auth.controller'
44
import { AuthService } from './auth.service'
5-
import { AuthDto } from './dto/auth.dto'
6-
import { Auth } from './schemas/auth.schema'
5+
import { AuthDto } from './_dto/auth._dto'
6+
import { Auth } from './_schemas/auth.schema'
77
import { HttpException, HttpStatus } from '@nestjs/common'
88
import { Types } from 'mongoose'
99
import { Response, Request } from 'express'

service/src/core/auth/auth.service.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { DeleteResult } from 'mongodb'
22
import { Test, TestingModule } from '@nestjs/testing'
33
import { AuthService } from './auth.service'
44
import { getModelToken } from '@nestjs/mongoose'
5-
import { Auth } from './schemas/auth.schema'
5+
import { Auth } from './_schemas/auth.schema'
66
import { Model, Types } from 'mongoose'
77

88
describe('AuthService', () => {

0 commit comments

Comments
 (0)