Skip to content

Latest commit

 

History

History
72 lines (48 loc) · 999 Bytes

README.md

File metadata and controls

72 lines (48 loc) · 999 Bytes

Cere wallet client application

Quick start

  1. Install dependencies:
nvm exec npm i
  1. Copy ENV file:
cp .env.dev .env
  1. Run the app:
nvm exec npm start
  1. Build the project in prod mode:
nvm exec npm run build

Auto tests

  1. Build the application bundle
nvm exec npm run build
  1. Run tests
nvm exec npm test # headless
nvm exec npm start --workspace @cere-wallet-tests/wdio # in browser
  1. Generate and open report
npm run test:report

Simulation

  1. Build the application bundle
nvm exec npm run build
  1. Run simulation
nvm exec npm test -- --suite=simulation --maxInstances=5 --multi-run=10 # headless
nvm exec npm start --workspace @cere-wallet-tests/wdio -- --suite=simulation --maxInstances=5 --multi-run=10 # in browser
  1. Generate and open report
npm run test:report