2017-03-30 15:34:24 -05:00
|
|
|
#!/bin/sh
|
|
|
|
|
2017-03-31 11:45:56 -05:00
|
|
|
echo "EXECUTING: Jasmine tests"
|
2017-03-30 15:34:24 -05:00
|
|
|
echo
|
|
|
|
|
2018-06-25 11:00:21 -05:00
|
|
|
cd ${WORKSPACE}/web/
|
2017-03-31 11:17:34 -05:00
|
|
|
|
2017-06-20 05:58:54 -05:00
|
|
|
/usr/bin/yarn install || { echo 'ERROR: Failed to install the required Javascript modules.' ; exit 1; }
|
|
|
|
/usr/bin/yarn run linter || { echo 'ERROR: Failed to lint the Javascript code.' ; exit 1; }
|
2017-04-07 09:14:56 -05:00
|
|
|
./node_modules/.bin/karma start --single-run || { echo 'ERROR: Error detected when running the Jasmine tests.' ; exit 1; }
|