Skip to content

Commit

Permalink
Move test files into the __tests__ directory
Browse files Browse the repository at this point in the history
  • Loading branch information
vasapolrittideah committed Jan 9, 2025
1 parent ba4ef59 commit f8c051f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Test, TestingModule } from '@nestjs/testing';
import { AuthController } from './auth.controller';
import { AuthController } from '../auth.controller';

describe('AuthController', () => {
let controller: AuthController;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Test, TestingModule } from '@nestjs/testing';
import { AuthService } from './auth.service';
import { AuthService } from '../auth.service';

describe('AuthService', () => {
let service: AuthService;
Expand Down

0 comments on commit f8c051f

Please sign in to comment.