index.sh 341 B

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