(props: any)
| 15 | |
| 16 | describe("ConfirmationDialog", () => { |
| 17 | const renderDialog = (props: any) => { |
| 18 | const store = createMockStore(); |
| 19 | return render( |
| 20 | <Provider store={store}> |
| 21 | <ConfirmationDialog {...props} /> |
| 22 | </Provider>, |
| 23 | ); |
| 24 | }; |
| 25 | |
| 26 | it("renders with default props", () => { |
| 27 | const onConfirm = vi.fn(); |
no test coverage detected