Skip to content

Commit

Permalink
fix: 모듈 의존성 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Conut-1 committed Oct 2, 2024
1 parent 0b5047c commit 51e06fd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions nestjs-BE/server/test/spaces.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import { Profile, Space } from '@prisma/client';
import { v4 as uuid } from 'uuid';
import { readFile } from 'fs/promises';
import { resolve } from 'path';
import { ProfileSpaceModule } from '../src/profile-space/profile-space.module';

describe('SpacesController (e2e)', () => {
let app: INestApplication;
Expand All @@ -26,6 +27,7 @@ describe('SpacesController (e2e)', () => {
ConfigModule.forRoot({ isGlobal: true }),
SpacesModule,
AuthModule,
ProfileSpaceModule,
],
}).compile();

Expand Down

0 comments on commit 51e06fd

Please sign in to comment.