mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
3ca5de7efd
we run all these tests on CircleCI with bazel. PR Close #27386
12 lines
308 B
Bash
Executable File
12 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"
|