524 B
524 B
| title |
|---|
| Preact Tests |
Preact Tests
The test code is located within the same directory as each component,
inside a __tests__ directory.
$ tree app/javascript/article-form -L 1
app/javascript/article-form
├── __tests__
└── articleForm.jsx
The testing library being used is Jest.
You can run those tests with:
npm run test
or
yarn test
At the end of the tests execution, you will see the code coverage for the Preact components tests.