aboutsummaryrefslogtreecommitdiffstats
path: root/init-repo.sh
diff options
context:
space:
mode:
authorPete Bacon Darwin2013-04-15 12:28:31 +0100
committerPete Bacon Darwin2013-04-15 12:30:33 +0100
commitef334d0070754a40d9330ab496bd80587de2ccc3 (patch)
treef78c88e5be3626ec5122c82680ef5afaf7809c46 /init-repo.sh
parent9f08d039782f917caeec4289c8caecec4e81adb2 (diff)
downloadangular.js-ef334d0070754a40d9330ab496bd80587de2ccc3.tar.bz2
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.
Diffstat (limited to 'init-repo.sh')
-rwxr-xr-xinit-repo.sh8
1 files changed, 4 insertions, 4 deletions
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..."