From ef334d0070754a40d9330ab496bd80587de2ccc3 Mon Sep 17 00:00:00 2001 From: Pete Bacon Darwin Date: Mon, 15 Apr 2013 12:28:31 +0100 Subject: docs(tutorial): testacular renamed to karma Replaced instances of 'Testacular' with 'Karma' to reflect name change of test runner. Replaced instances of 'http://vojtajina.github.com/testacular' with 'http://karma-runner.github.io/' to reflect dedicated page for Karma Test Runner. Added location of config file needed to start the Karma server. This is still labeled 'testacular.conf.js' and needs file name to be updated in the phone example repo. --- init-repo.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'init-repo.sh') diff --git a/init-repo.sh b/init-repo.sh index 12c2eff5..ab7a9d53 100755 --- a/init-repo.sh +++ b/init-repo.sh @@ -2,7 +2,7 @@ # # Script to initialize angular repo # - install required node packages -# - install Testacular +# - install Karma # - install git hooks @@ -22,10 +22,10 @@ fi echo "Installing required npm packages..." npm install -testacular=`which testacular 2>&1` +karma=`which karma 2>&1` if [ $? -ne 0 ]; then - echo "Installing Testacular..." - npm install -g testacular + echo "Installing Karma..." + npm install -g karma fi echo "Installing git hooks..." -- cgit v1.2.3