Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- next13 emotion
- 자바스크립트 스코프
- 카카오 코테
- 리액트쿼리 suspense
- 프로그래머스 거리두기 확인하기
- 백준 1339번 nodejs
- 프로그래머스 문자열 압축
- 사용성 개선
- TypeError: createContext only works in Client Components. Add the "use client" directive at the top of the file to use it. Read more:
- 백준 1339번 자바스크립트
- js 문자열 압축
- 백준 1339번 js
- 스코프
- js 거리두기 확인하기
- suspense 비동기
- js 스코프
- suspense 동작원리
- 구름톤
- 백준 2108 nodejs
- 옵셔널체이닝
- app router emotion
- emotion RSC
- 구름톤 챌린지
- 자바스크립트 문자열 압축
- emtion app router
- 구름톤 챌린지 회고
- suspense react-query
- 백준 2108 자바스크립트
- suspense 병목현상
- js
Archives
- Today
- Total
목록react cypress (1)
Lennon FE
[React] Cypress로 e2e 테스트를 구현해보자
Next.js를 포함한 React 프로젝트에서 Cypress로 e2e를 구현해 봅시다. 프로젝트에 Cypress를 설치해 줍니다. $ yarn add cypress --dev or $ npm install cypress --save-dev Package.json에 가서 스크립트를 추가해 줍니다. "scripts": { ..., "test": "cypress open", "cy:run": "cypress run" }, 터미널에서 명령어를 작성해 봅시다 $ yarn test or $ npm run test 그럼 아래와 같은 프로그램이 켜질 겁니다! 우리는 e2e를 구현할 것이니까 첫 번째를 선택하고 파일을 생성해 준다는 거에 동의하고 넘어갑니다. 제 기준 Electron이 편해서 선택하여 Start를 누릅니..
🧑💻 Web/React
2023. 5. 14. 19:28