Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of bibbleWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 03:05, 24 September 2023 Iwiseman talk contribs created page React Setting up Vite with Jest (Created page with "=Introduction= This is a page to help set up vite with jest which did not work out of the box =Steps= ==Setup Project== Create project <syntaxhighlight lang="bash"> npm init vite@latest demo-project -- --template react-ts </syntaxhighlight> Add Node Engine <syntaxhighlight lang="js"> { "name": "demo-project", "version": "0.0.0", "engines":{ "node": ">=16.13.0", "npm": ">=8.1.0" }, // ... } </syntaxhighlight> ==Install and test Jest== Install Jest <synta...")