Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Testing Support with Vitest #8

Merged
merged 12 commits into from
Jul 26, 2023
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@ vite-template-react
└── src
├── App.css
├── App.jsx
├── App.test.jsx
├── index.css
├── index.jsx
└── logo.svg
└── setupTests.js
├── .gitignore
├── index.html
├── package.json
Expand Down Expand Up @@ -75,11 +77,12 @@ And then open http://localhost:3000 to view it in the browser.

In this project, you can run the following scripts:

| Script | Description |
| ------------- | --------------------------------------------------- |
| npm run dev | Runs the app in the development mode. |
| npm run build | Builds the app for production to the `dist` folder. |
| npm run serve | Serves the production build from the `dist` folder. |
| Script | Description |
| ------------- | ------------------------------------------------------- |
| npm start | Runs the app in the development mode. |
| npm test | Launches the test runner in the interactive watch mode. |
| npm run build | Builds the app for production to the `dist` folder. |
| npm run serve | Serves the production build from the `dist` folder. |

## Credits

Expand Down
Loading