aboutsummaryrefslogblamecommitdiffhomepage
path: root/scripts/e2e.sh
blob: b1e9245c1379ba32a6d4eeb7f7975d1a0ff9c69a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                 
#!/bin/sh

set -eu

#npm run build:server
npm run clean:server:test

concurrently -k -s first \
    "cd client && npm run ng -- e2e" \
    "NODE_ENV=test NODE_APP_INSTANCE=1 npm start"