[フレーム]
Skip to main content
An OutSystems Company →
Version: v8

Best Practices

IonApp is required for test templates

In your test template when rendering with React Testing Library, you must wrap your component with an IonApp component. This is required for the component to be rendered correctly.

Example.test.tsx
import{IonApp}from'@ionic/react';
import{ render }from"@testing-library/react";

importExamplefrom'./Example';

test('example',()=>{
render(
<IonApp>
<Example/>
</IonApp>
);
...
});

Use user-event for user interactions

React Testing Library recommends using the user-event library for simulating user interactions. This library provides a more realistic simulation of user interactions than the fireEvent function provided by React Testing Library.

Example.test.tsx
import{IonApp}from'@ionic/react';
import{ render }from'@testing-library/react';
importuserEventfrom'@testing-library/user-event';

importExamplefrom'./Example';

test('example',async()=>{
const user = userEvent.setup();

render(
<IonApp>
<Example/>
</IonApp>
);

await user.click(screen.getByRole('button',{ name:/click me!/i}));
});

For more information on user-event, see the user-event documentation.

AltStyle によって変換されたページ (->オリジナル) /