mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
17 lines
260 B
Bash
Executable file
17 lines
260 B
Bash
Executable file
#!/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
|
|
)
|
|
)
|