mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-30 20:43:50 -06:00
11 lines
308 B
Bash
11 lines
308 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo "################################################################################"
|
||
|
echo "Executing jasmine tests..."
|
||
|
echo "################################################################################"
|
||
|
echo
|
||
|
|
||
|
cd $WORKSPACE/web/
|
||
|
/bin/npm install
|
||
|
./node_modules/.bin/karma start --single-run
|