https://github.com/angular/angular
Raw File
Tip revision: 652ac79d639b340060919b38de18b22f68712c2a authored by Greg Magolan on 16 October 2018, 20:20:00 UTC
build: idiomatic install of @angular/bazel npm package (#26258)
Tip revision: 652ac79
test.sh
#!/usr/bin/env bash

set -u -e -o pipefail

(
  cd `dirname $0`
  ./build.sh

  gulp serve-examples &
  trap "kill $!" EXIT

  (
    cd ../../
    NODE_PATH=${NODE_PATH:-}:dist/all
    $(npm bin)/protractor protractor-examples-e2e.conf.js --bundles=true
  )
)
back to top