+ it dev vitest prisma Next.js(App Router)で作ったTODOアプリにVitestでテストを追加しました wono | discuss | tweet + it dev jest prisma Unit testing with Prisma ORM | Prisma DocumentationLearn how to setup and run unit tests with Prisma Client wono | discuss | tweet + it dev vitest Simple Unit Testing with Vitest: NextJS AppUnit testing considers only a unit in an isolated environment whereas there could be a block of code a.k.a function, or component. For better understanding, I will create a simple project to… wono | discuss | tweet + it dev vitest How to Mock Fetch API in VitestIn this article, we will learn how to mock the fetch API in Vitest in a to-do list service file. we will use the global along with vi.fn(). wono | discuss | tweet + it dev nextjs api Next.jsのAPIルートをテストする wono | discuss | tweet + it dev nextjs jest NextJs 14 — App Router and Unit Testing (w/ async pages)Unit-test in NextJs14 using JEST with practical examples. wono | discuss | tweet + it dev nextjs NextJS 14 app directory route.js testing fails with Vitest wono | discuss | tweet + it blog jest 단위 테스트로 복잡한 도메인의 프론트 프로젝트 정복하기(feat. Jest) wono | discuss | tweet + it dev nextjs mock How do I test routes made with the app router in NextJS? I'm using vitest for this wono | discuss | tweet + it dev nextjs vitest Next.js application testing with Vitest and testing libraryIn this article, we’ll continue testing Next.js application using Vitest and testing library, and delve into testing more complex components that interact with APIs, Redux selectors, and custom… wono | discuss | tweet + it dev nextjs vitest 프론트엔드에서 Nextjs와 Vitest를 사용해 손쉽게 테스팅하기 (그리고 개발 재밌게 하기)프론트엔드 진영에서 테스팅은 필수로 여겨지지 않는 경우가 제법 많습니다. 각기 다른 이유가 있겠지만 제 경험상 저는 ‘바빠서'가 주된 이유였던 것 같습니다. unit testing, integration testing, e2e testing 모두 100%의 커버리지로 테스팅을 진행해서 나쁜 점이야 없겠다만, 우리의 외부환경은 기다려 줄 수 없습니다. 특히… wono | discuss | tweet + it dev nextjs jest How to Unit Test Next.js API Routes with TypescriptNext.js is an awesome frontend framework. It’s powered by React under the hood so it plays well with everything React has to offer out of the box: Hooks, Context, hot browser reloading, Typescript… wono | discuss | tweet + 구글 프리픽 거주자증명서 프리픽 거주자 증명서 발급 해결방법 : 네이버 블로그 wono | discuss | tweet + 구글 세금정보 구글 애드센스 미국 세금 양식 만료에 따른 업데이트 방법(2024년)구글 유튜브에서 위와 같은 이미지를 담은 이메일이 오더라고요. 유튜브 채널이 여러개라서 각 채널별로 다 들어오는것 같습니다. 하지만 애드센스 계정은 개인당 1개이므로 1개의 계정에서만 미국 세금 양식을 업데이트하면 됩니다. 위 내용은 티스토리 블로그나 유튜브에서 수익을 창출하는분들이라면 꼭 해야하는 미국 세금 양식 제출입니다.미국에 거주하지 않는 모든 크리에이터에게도 적용되는 사항이라고해서 세금 서류 제출을 하라고해서 구글 애드센스 페이지에서 제출을 하였습니다. 이메일 내용 아래쪽에 보면 위 그림처럼 순서가 잘 나타나 있습니다. 기본적으로는 위 순서대로 진행하면 됩니다. 기한의 경우 12월 10일까지라고 합니다. 그래서 미루지말고 이메일을 받자마자 시간을 내어서 바로 진행하는게 좋아보입니다. 미국 세금 .. wono | discuss | tweet + 생활 보험 자동차 후측방충돌방지장치 장착 차량 할인 특약삼성화재 다이렉트 공식사이트, 자동차/운전자/실손의료비/어린이/해외여행등 삼성화재 오프라인대비 저렴 wono | discuss | tweet + it tool playwright E2E 테스트로 왜 Playwright 선택했는가?이 글은 'E2E 테스트 도구(tool)들 분류하기'에 이은 3번째 연재물입니다. 앞서 분류했던 Progressive automation과 Test runner 영역에서 각각의 도구를 선택했습니다. 이때 선택의 기준을 세우고 그 기준에 맞게끔 선택을 했는데요. 그 선택 과정을 정리해 본 글입니다. 목차 무엇을 선택했는가? 왜 선택했는가? 성능 다양한 브라우저 지원 병렬처리 멀티 Tab 지원 왜 Cucumber는 선택하지 않았나? 마무리 연재물 테스트도 종류가 있다.(링크) E2E 테스트 도구(tool)들 분류하기.(링크) E2E 테스트로 왜 Playwirght 선택했는가?(링크) Playwright, Auth 자동화와 API Mocking(링크) Playwright 빌드 자동화 구축(링크) VScode를.. wono | discuss | tweet + it tool test playwright API testing | PlaywrightIntroduction wono | discuss | tweet + it dev nextjs jest Mastering Jest: A Complete Guide to Testing Next.js Applications Part-1In the fast-paced world of web development, creating robust and bug-free applications is paramount.... Tagged with jest, testing, nextjs, react. wono | discuss | tweet + it dev nextjs jest Unit Test Next.js API Routes with TypeScript (longer-version)Testing API routes sucks, especially when using TypeScript. This article covers how to unit test Next.js API routes with TypeScript using Jest and React Testing Libraries. With the release of Next.js… wono | discuss | tweet + it dev jest Jest를 이용해서 테스트 코드를 작성해 보자!테스트 코드를 작성해야하는 이유...?작성한 코드가 의도한 대로 작동하는지 검증할 수 있다.코드 변경 시, 변경 부분으로 인한 영향도를 쉽게 파악할 수 있다.코드 리팩토링 시 기능 구현이 동일하게 되었다는 판단을 내릴 수 있다.코드 변경 시, 변경 부분으로 인한 영향도 wono | discuss | tweetNext
+ it dev jest prisma Unit testing with Prisma ORM | Prisma DocumentationLearn how to setup and run unit tests with Prisma Client wono | discuss | tweet
+ it dev vitest Simple Unit Testing with Vitest: NextJS AppUnit testing considers only a unit in an isolated environment whereas there could be a block of code a.k.a function, or component. For better understanding, I will create a simple project to… wono | discuss | tweet
+ it dev vitest How to Mock Fetch API in VitestIn this article, we will learn how to mock the fetch API in Vitest in a to-do list service file. we will use the global along with vi.fn(). wono | discuss | tweet
+ it dev nextjs jest NextJs 14 — App Router and Unit Testing (w/ async pages)Unit-test in NextJs14 using JEST with practical examples. wono | discuss | tweet
+ it dev nextjs mock How do I test routes made with the app router in NextJS? I'm using vitest for this wono | discuss | tweet
+ it dev nextjs vitest Next.js application testing with Vitest and testing libraryIn this article, we’ll continue testing Next.js application using Vitest and testing library, and delve into testing more complex components that interact with APIs, Redux selectors, and custom… wono | discuss | tweet
+ it dev nextjs vitest 프론트엔드에서 Nextjs와 Vitest를 사용해 손쉽게 테스팅하기 (그리고 개발 재밌게 하기)프론트엔드 진영에서 테스팅은 필수로 여겨지지 않는 경우가 제법 많습니다. 각기 다른 이유가 있겠지만 제 경험상 저는 ‘바빠서'가 주된 이유였던 것 같습니다. unit testing, integration testing, e2e testing 모두 100%의 커버리지로 테스팅을 진행해서 나쁜 점이야 없겠다만, 우리의 외부환경은 기다려 줄 수 없습니다. 특히… wono | discuss | tweet
+ it dev nextjs jest How to Unit Test Next.js API Routes with TypescriptNext.js is an awesome frontend framework. It’s powered by React under the hood so it plays well with everything React has to offer out of the box: Hooks, Context, hot browser reloading, Typescript… wono | discuss | tweet
+ 구글 세금정보 구글 애드센스 미국 세금 양식 만료에 따른 업데이트 방법(2024년)구글 유튜브에서 위와 같은 이미지를 담은 이메일이 오더라고요. 유튜브 채널이 여러개라서 각 채널별로 다 들어오는것 같습니다. 하지만 애드센스 계정은 개인당 1개이므로 1개의 계정에서만 미국 세금 양식을 업데이트하면 됩니다. 위 내용은 티스토리 블로그나 유튜브에서 수익을 창출하는분들이라면 꼭 해야하는 미국 세금 양식 제출입니다.미국에 거주하지 않는 모든 크리에이터에게도 적용되는 사항이라고해서 세금 서류 제출을 하라고해서 구글 애드센스 페이지에서 제출을 하였습니다. 이메일 내용 아래쪽에 보면 위 그림처럼 순서가 잘 나타나 있습니다. 기본적으로는 위 순서대로 진행하면 됩니다. 기한의 경우 12월 10일까지라고 합니다. 그래서 미루지말고 이메일을 받자마자 시간을 내어서 바로 진행하는게 좋아보입니다. 미국 세금 .. wono | discuss | tweet
+ 생활 보험 자동차 후측방충돌방지장치 장착 차량 할인 특약삼성화재 다이렉트 공식사이트, 자동차/운전자/실손의료비/어린이/해외여행등 삼성화재 오프라인대비 저렴 wono | discuss | tweet
+ it tool playwright E2E 테스트로 왜 Playwright 선택했는가?이 글은 'E2E 테스트 도구(tool)들 분류하기'에 이은 3번째 연재물입니다. 앞서 분류했던 Progressive automation과 Test runner 영역에서 각각의 도구를 선택했습니다. 이때 선택의 기준을 세우고 그 기준에 맞게끔 선택을 했는데요. 그 선택 과정을 정리해 본 글입니다. 목차 무엇을 선택했는가? 왜 선택했는가? 성능 다양한 브라우저 지원 병렬처리 멀티 Tab 지원 왜 Cucumber는 선택하지 않았나? 마무리 연재물 테스트도 종류가 있다.(링크) E2E 테스트 도구(tool)들 분류하기.(링크) E2E 테스트로 왜 Playwirght 선택했는가?(링크) Playwright, Auth 자동화와 API Mocking(링크) Playwright 빌드 자동화 구축(링크) VScode를.. wono | discuss | tweet
+ it dev nextjs jest Mastering Jest: A Complete Guide to Testing Next.js Applications Part-1In the fast-paced world of web development, creating robust and bug-free applications is paramount.... Tagged with jest, testing, nextjs, react. wono | discuss | tweet
+ it dev nextjs jest Unit Test Next.js API Routes with TypeScript (longer-version)Testing API routes sucks, especially when using TypeScript. This article covers how to unit test Next.js API routes with TypeScript using Jest and React Testing Libraries. With the release of Next.js… wono | discuss | tweet
+ it dev jest Jest를 이용해서 테스트 코드를 작성해 보자!테스트 코드를 작성해야하는 이유...?작성한 코드가 의도한 대로 작동하는지 검증할 수 있다.코드 변경 시, 변경 부분으로 인한 영향도를 쉽게 파악할 수 있다.코드 리팩토링 시 기능 구현이 동일하게 되었다는 판단을 내릴 수 있다.코드 변경 시, 변경 부분으로 인한 영향도 wono | discuss | tweet