Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
Clone the repository and install dependencies
git clone [email protected]:bschulzebaek/blockjs.git
cd blockjs
npm install
Start the Vite dev server (Host defaults to http://localhost:3000/)
npm run dev
Unit testing with Vitest
# Run once and generate coverage report at coverage/index.html
npm run test:unit
# Start with file watcher for both source and test files
npm run test:unit:watch
# Filter tests to run by filename
npm run test:unit:watch -- World.test
Available commands can be found in the package.json file at "scripts".