26 lines
612 B
TypeScript
26 lines
612 B
TypeScript
import { INestApplication } from '@nestjs/common'
|
|
import { Test, TestingModule } from '@nestjs/testing'
|
|
import * as request from 'supertest'
|
|
|
|
import { AppModule } from '../../src/app.module'
|
|
|
|
describe('AppController (e2e)', () => {
|
|
let app: INestApplication
|
|
|
|
beforeEach(async () => {
|
|
const moduleFixture: TestingModule = await Test.createTestingModule({
|
|
imports: [AppModule],
|
|
}).compile()
|
|
|
|
app = moduleFixture.createNestApplication()
|
|
await app.init()
|
|
})
|
|
|
|
afterAll(async () => {
|
|
await app.close()
|
|
})
|
|
|
|
it('/ (GET)', async () => {
|
|
await request(app.getHttpServer()).get('/').expect(404)
|
|
})
|
|
})
|