aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/e2e.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/e2e.sh')
-rwxr-xr-xscripts/e2e.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/e2e.sh b/scripts/e2e.sh
new file mode 100755
index 000000000..b1e9245c1
--- /dev/null
+++ b/scripts/e2e.sh
@@ -0,0 +1,11 @@
1#!/bin/sh
2
3set -eu
4
5#npm run build:server
6npm run clean:server:test
7
8concurrently -k -s first \
9 "cd client && npm run ng -- e2e" \
10 "NODE_ENV=test NODE_APP_INSTANCE=1 npm start"
11