Skip to content

Commit

Permalink
Revert "try to fix test coverage"
Browse files Browse the repository at this point in the history
This reverts commit e336196.
  • Loading branch information
sszafGCA committed Nov 23, 2023
1 parent e336196 commit 235a83c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@ import { INestApplication } from '@nestjs/common';
import { Test, TestingModule } from '@nestjs/testing';
import { ServerTestModule } from '@modules/server';
import request from 'supertest';
import { RedisModule } from '@src/infra/redis';

describe('Server Controller (API)', () => {
let app: INestApplication;
beforeAll(async () => {
const moduleFixture: TestingModule = await Test.createTestingModule({
imports: [ServerTestModule, RedisModule],
imports: [ServerTestModule],
}).compile();

app = moduleFixture.createNestApplication();
Expand Down

0 comments on commit 235a83c

Please sign in to comment.