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
- golang
- javascript
- Spring
- go
- hook
- Redux
- typescript
- JPA
- Chakra
- css
- satisfiles
- frontend
- springboot
- React
- designpatterns
- RTK
- java
- Gin
- component
- backend
- react-hook-form
- tanstackquery
- 오블완
- 웹애플리케이션서버
- JavaSpring
- 티스토리챌린지
- storybook
- test
- ReactHooks
Archives
- Today
- Total
목록2024/11/17 (1)
bkdragon's log
Storybook Interactions Portal Component
Portal을 사용해서 렌더링하는 컴포넌트는 play 함수의 canvasElement 내에 없기 때문에 찾을 수 없다. 따라서 @storybook/test에서 제공하는 screen을 사용해줘야 한다.import { expect, screen, waitFor, fireEvent, fn } from "@storybook/test";export const Default: Story = { name: "모달 창 기본", args: { onClose: fn(), isOpen: true, }, play: async ({ args, _ }) => { await waitFor(() => { expect(screen.getByTestId("..
React
2024. 11. 17. 15:43