6 lines
177 B
Bash
6 lines
177 B
Bash
|
|
#!/bin/bash
|
||
|
|
cd /Users/gbpark/ERP-node
|
||
|
|
node run-e2e-test.mjs 2>&1 | tee /tmp/e2e-smoke-result.txt
|
||
|
|
echo "EXIT_CODE: $?" >> /tmp/e2e-smoke-result.txt
|
||
|
|
cat /tmp/e2e-smoke-result.txt
|