fix: event emitter + misc typings

This commit is contained in:
Mohamed Marrouchi
2024-10-26 10:36:47 +01:00
parent c722b85d5d
commit acc6fcaa88
14 changed files with 3553 additions and 4727 deletions

View File

@@ -10,14 +10,14 @@ import { INestApplication } from '@nestjs/common';
import { Test, TestingModule } from '@nestjs/testing';
import request from 'supertest';
import { AppModule } from './../src/app.module';
import { HexabotModule } from './../src/app.module';
describe('AppController (e2e)', () => {
let app: INestApplication;
beforeEach(async () => {
const moduleFixture: TestingModule = await Test.createTestingModule({
imports: [AppModule],
imports: [HexabotModule],
}).compile();
app = moduleFixture.createNestApplication();