mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
15 lines
263 B
Bash
Executable File
15 lines
263 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# stop on any non-zero return value from test_watch.js, and print "FAILED"
|
|
set -e
|
|
trap 'echo FAILED' EXIT
|
|
|
|
METEOR_DIR=$(pwd)/..
|
|
|
|
# run tests
|
|
./node.sh $METEOR_DIR/tools/tests/test_watch.js
|
|
|
|
# cleanup trap, and print "SUCCESS"
|
|
trap - EXIT
|
|
echo PASSED
|