- Install dependencies:
nvm exec npm i
- Copy ENV file:
cp .env.dev .env
- Run the app:
nvm exec npm start
- Build the project in prod mode:
nvm exec npm run build
- Build the application bundle
nvm exec npm run build
- Run tests
nvm exec npm test # headless
nvm exec npm start --workspace @cere-wallet-tests/wdio # in browser
- Generate and open report
npm run test:report
- Build the application bundle
nvm exec npm run build
- 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
- Generate and open report
npm run test:report