📄️ Unit Tests
Unit testing is a fundamental aspect of ensuring the quality and reliability of your dApp's TypeScript code. In your React dApp project, Jest is already configured to handle unit testing for pure TypeScript files. This allows you to write tests to verify the correctness of your functions, classes, and utilities.
📄️ Component Unit Tests
Unit testing React components is an essential part of ensuring the quality and functionality of your dApp's user interface. In your React dApp project, you can use React Testing Library in combination with Storybook scenarios to perform unit tests on your React components.
📄️ Integration Tests
this page is under construction.
📄️ E2E Tests
this page is under construction.