초기 환경설정
![[초기설정] E2E 테스트를 설정하는 예제 코드 설명](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2Flscbu%2FbtsIAwaNK0B%2FAAAAAAAAAAAAAAAAAAAAAGyBoJ6cNzM1arMY_1B9YgKwfyxsw19QQuMRzY--Jrb4%2Fimg.jpg%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3DxYjH68sFW%252FhPOoOCpuuHMa9H5NU%253D)
[초기설정] E2E 테스트를 설정하는 예제 코드 설명
유저 E2E 파일 예시test/user.e2e-spec.tsimport { Test, TestingModule } from "@nestjs/testing";import { INestApplication } from "@nestjs/common";import * as request from "supertest";import { AppModule } from "../src/app.module";describe("UserModule (e2e)", () => { let app: INestApplication; beforeEach(async () => { const module: TestingModule = await Test.createTestingModule({ // 기본적으로 전체 모듈인 ..