mirror of
https://github.com/scratchfoundation/scratch-html5.git
synced 2024-12-03 12:26:49 -05:00
10 lines
266 B
Bash
10 lines
266 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
BASE_DIR=`dirname $0`
|
||
|
|
||
|
echo ""
|
||
|
echo "Starting Karma Server (http://karma-runner.github.io)"
|
||
|
echo "-------------------------------------------------------------------"
|
||
|
|
||
|
$BASE_DIR/../node_modules/karma/bin/karma start $BASE_DIR/../config/karma.conf.js $*
|