From f5ef71c5f04e0b149fad767d77b66b09c5201804 Mon Sep 17 00:00:00 2001 From: Dav Glass Date: Mon, 4 Jun 2012 13:09:51 -0500 Subject: [PATCH] Added symlink to tests, tests will fail if this does not parse properly --- scripts/test.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/scripts/test.sh b/scripts/test.sh index 2e51e0b4..e341743e 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -5,6 +5,15 @@ cd "$(dirname "$0")" ./prep.sh cd ../tests/ wait +cd ./input +if [ -L ./test-linked ]; then + rm ./test-linked; +fi +ln -sf ./test2 ./test-linked +wait +cd ../ +wait ../node_modules/.bin/yuitest ./parser.js ./builder.js ./options.js exit $? +