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 |
Tags
- vercel git lfs
- electron-packager
- camera access
- nextjs
- augmentedDevice
- 티스토리 성능
- adb pair
- npm package
- github lfs
- adb connect
- rolldown
- react-native
- Failed to compiled
- Git
- Recoil
- github 100mb
- camera permission
- 이미지 데이터 타입
- device in use
- github pdf
- html
- Can't resolve
- react-native-dotenv
- animation
- ffi-napi
- ELECTRON
- Each child in a list should have a unique "key" prop.
- dvh
- silent printing
- custom printing
Archives
- Today
- Total
목록2022/11/08 (1)
Bleeding edge
2022/11/08 - Jest 사용법
지금 다룰 내용은 전반적인 Jest가 아니라 DOM에서의 Jest에 대한 간단한 element확인 방법에 대해 다룰 것이다. Jest에 대한 예시를 공부하기 전에 몇 가지 제스트의 메소드에 대해 메모하려고 한다. 1. describe 여러개의 테스트 코드를 묶을 때 사용한다. describe("A11yHidden 컴포넌트", () => { test("A11yHidden 컴포넌트는 정상적으로 렌더링됩니다.", () => { render(테스트); const element = screen.getByText(/테스트/); expect(element).toBeInTheDocument(); }); test("span", () => { render(); const element = screen.getByTestId..
ConnecTo
2022. 11. 8. 20:52