mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-22 16:56:30 -06:00
11 lines
389 B
Bash
Executable File
11 lines
389 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "EXECUTING: Jasmine tests"
|
|
echo
|
|
|
|
cd $WORKSPACE/web/
|
|
|
|
/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; }
|
|
./node_modules/.bin/karma start --single-run || { echo 'ERROR: Error detected when running the Jasmine tests.' ; exit 1; }
|