This commit is contained in:
Abdalhamid Alhamad
2025-12-07 20:18:59 +03:00
parent 2a62787c3b
commit 07d4a83cf9

View File

@ -1,5 +1,5 @@
import { Test, TestingModule } from '@nestjs/testing';
import { INestApplication } from '@nestjs/common';
import { Test, TestingModule } from '@nestjs/testing';
import request from 'supertest';
import { AppModule } from './../src/app.module';
@ -18,4 +18,6 @@ describe('AppController (e2e)', () => {
it('/ (GET)', () => {
return request(app.getHttpServer()).get('/').expect(200).expect('Hello World!');
});
});