Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 700 Bytes

README-dev.md

File metadata and controls

49 lines (34 loc) · 700 Bytes

How to contribute to the SnarkyJS codebase

This README includes information that is helpful for SnarkyJS core contributors.

Run examples using NodeJS

npm install
npm run build

./run src/examples/api_exploration.ts

Build and run the web version

npm install
npm run build:web
npm run serve:web

To see the test running in a web browser, go to http://localhost:8000/

Run tests

  • Unit tests

    npm run test
    npm run test:unit
  • Integration tests

    npm run test:integration
  • E2E tests

    npm install
    npm run e2e:install
    npm run build:web
    
    npm run e2e:prepare-server
    npm run test:e2e
    npm run e2e:show-report