mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
11 lines
308 B
Bash
Executable file
11 lines
308 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -u -e -o pipefail
|
|
|
|
# Setup environment
|
|
readonly thisDir=$(cd $(dirname $0); pwd)
|
|
source ${thisDir}/_travis-fold.sh
|
|
|
|
travisFoldStart "test.unit.localChrome"
|
|
$(npm bin)/karma start ./karma-js.conf.js --single-run --browsers=${KARMA_JS_BROWSERS}
|
|
travisFoldEnd "test.unit.localChrome"
|