mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
13 lines
216 B
Bash
Executable file
13 lines
216 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eu -o pipefail
|
|
|
|
cd `dirname $0`
|
|
|
|
echo "#################################"
|
|
echo "Running platform-server end to end tests"
|
|
echo "#################################"
|
|
|
|
npm install
|
|
|
|
npm run test
|