blob: 17c8f68efda0063b187cd400fa83a96475680ed2 (
plain) (
tree)
|
|
#!/bin/sh
set -eu
npm run clean:server:test
(
cd client
npm run webdriver-manager update
)
concurrently -k -s first \
"cd client && npm run ng -- e2e --port 3333" \
"NODE_ENV=test NODE_APP_INSTANCE=1 NODE_CONFIG='{ \"log\": { \"level\": \"warning\" } }' npm start"
|