summaryrefslogtreecommitdiff
path: root/test/app.e2e-spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'test/app.e2e-spec.ts')
-rw-r--r--test/app.e2e-spec.ts7
1 files changed, 2 insertions, 5 deletions
diff --git a/test/app.e2e-spec.ts b/test/app.e2e-spec.ts
index 50cda62..f6199de 100644
--- a/test/app.e2e-spec.ts
+++ b/test/app.e2e-spec.ts
@@ -1,7 +1,7 @@
import { Test, TestingModule } from '@nestjs/testing';
import { INestApplication } from '@nestjs/common';
import * as request from 'supertest';
-import { AppModule } from './../src/app.module';
+import { AppModule } from './../server/app.module';
describe('AppController (e2e)', () => {
let app: INestApplication;
@@ -16,9 +16,6 @@ describe('AppController (e2e)', () => {
});
it('/ (GET)', () => {
- return request(app.getHttpServer())
- .get('/')
- .expect(200)
- .expect('Hello World!');
+ return request(app.getHttpServer()).get('/').expect(200).expect('Hello World!');
});
});