diff --git a/test/app.e2e-spec.ts b/test/app.e2e-spec.ts index 1d251cc..26440de 100644 --- a/test/app.e2e-spec.ts +++ b/test/app.e2e-spec.ts @@ -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!'); }); + + });