chore: remove concept

This commit is contained in:
2025-05-06 14:22:57 +02:00
parent 8686bc4c47
commit c6f2df9a0f
20 changed files with 22 additions and 1373 deletions
+7 -7
View File
@@ -1,4 +1,4 @@
import * as request from 'supertest';
// import * as request from 'supertest';
import { Test } from '@nestjs/testing';
import { AppModule } from './../src/app.module';
import { INestApplication } from '@nestjs/common';
@@ -19,10 +19,10 @@ describe('AppController (e2e)', () => {
await app.close();
});
it('/ (GET)', () => {
return request(app.getHttpServer())
.get('/')
.expect(200)
.expect('Hello World!');
});
// it('/ (GET)', () => {
// return request(app.getHttpServer())
// .get('/')
// .expect(200)
// .expect('Hello World!');
// });
});