Dolphin-PC / Commerce

전자기기 구매 E-Commerce프로젝트
https://banana-shop-chi.vercel.app
0 stars 0 forks source link

테스트 코드 React #51

Closed Dolphin-PC closed 3 weeks ago

Dolphin-PC commented 3 weeks ago
Dolphin-PC commented 3 weeks ago

📌 Vitest

Dolphin-PC commented 3 weeks ago

💥 React is not defined

image


해결

interface VitestConfigExport extends UserConfig { test: InlineConfig; }

// https://vitejs.dev/config/ export default defineConfig({ plugins: [react(), svgr()], test: { globals: true, environment: "jsdom", setupFiles: "./src/test/setup.ts", }, resolve: { alias: { "@": path.resolve(__dirname, "./src"), }, }, } as VitestConfigExport);

Dolphin-PC commented 3 weeks ago

💥 Router Component

export * from "@testing-library/react";

/**



- 이를 이용해서, 사용한다면 아래와 같이 렌더링 할떄 오류가 발생하지 않는다.
![image](https://github.com/user-attachments/assets/7c475dcf-0fef-4743-8b25-82909339d42c)
Dolphin-PC commented 2 weeks ago

📏 렌더링 시간 측정