From 701fbfa135797e74620fdad359c345c7c4cfa7bd Mon Sep 17 00:00:00 2001 From: Eemeli Aro Date: Wed, 26 Aug 2020 19:44:41 +0300 Subject: [PATCH] Well, clearly the CI example test fails when it should. --- examples/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/test.sh b/examples/test.sh index 6b15058..139e4b7 100755 --- a/examples/test.sh +++ b/examples/test.sh @@ -2,5 +2,5 @@ set -e node dist/factory.js | grep -q "factory { one: 'one', other: 'other' }" && echo "factory ok" || (echo "factory failed" && false) -node dist/ponyfill.js | grep -q "ponyfill { one: 'one', othe: 'other' }" && echo "ponyfill ok" || (echo "ponyfill failed" && false) +node dist/ponyfill.js | grep -q "ponyfill { one: 'one', other: 'other' }" && echo "ponyfill ok" || (echo "ponyfill failed" && false) node dist/polyfill.js | grep -q "{ one: 'one', other: 'other' }" && echo "polyfill ok" || (echo "polyfill failed" && false)