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