Skip to content

Commit

Permalink
fix nest entrypoint after transpilation, fix overall imports
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeh committed May 15, 2024
1 parent 105b689 commit 2160432
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/test/app.e2e-spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Test, TestingModule } from '@nestjs/testing';
import { INestApplication } from '@nestjs/common';
import * as request from 'supertest';
import { AppModule } from '../src/app.module';
import { AppModule } from '@api/app.module';

describe('AppController (e2e)', () => {
let app: INestApplication;
Expand Down
2 changes: 1 addition & 1 deletion api/test/users/users.controller.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Test, TestingModule } from '@nestjs/testing';
import { UsersController } from '../../src/modules/users/users.controller';
import { UsersController } from '@api/modules/users/users.controller';

describe('UsersController', () => {
let controller: UsersController;
Expand Down

0 comments on commit 2160432

Please sign in to comment.