index.sh 378 B

123456789101112131415
  1. #!/bin/sh
  2. set -eu
  3. npm run clean:server:test
  4. (
  5. cd client
  6. npm run webdriver-manager update
  7. npm run webpack -- --config webpack/webpack.video-embed.js --mode development
  8. )
  9. npm run concurrently -- -k -s first \
  10. "cd client && npm run ng -- e2e --port 3333" \
  11. "NODE_ENV=test NODE_APP_INSTANCE=1 NODE_CONFIG='{ \"log\": { \"level\": \"warning\" } }' npm start"