Skip to content
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.

Latest commit

 

History

History
40 lines (29 loc) · 1.74 KB

README.md

File metadata and controls

40 lines (29 loc) · 1.74 KB

BlockJS Logo

GitHub package.json version GitHub Workflow Status Codecov

Placeholder

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.

Local Development

Clone the repository and install dependencies

git clone git@github.com: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".