Skip to content

Commit

Permalink
test(server): Fix e2e test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
mugifly committed Jun 21, 2024
1 parent e16de08 commit 1a4f647
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions server/test/app.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@ describe('AppController (e2e)', () => {
await app.init();
});

it('/ (GET)', () => {
return request(app.getHttpServer())
.get('/')
.expect(200)
.expect('Hello World!');
it('/test (GET)', () => {
return request(app.getHttpServer()).get('/text').expect(200);
});
});

0 comments on commit 1a4f647

Please sign in to comment.