diff options
| author | Pete Bacon Darwin | 2013-04-15 12:28:31 +0100 | 
|---|---|---|
| committer | Pete Bacon Darwin | 2013-04-15 12:28:31 +0100 | 
| commit | 59bfe8e5a9edf7ba000d258b9ac1ef8355c9aca7 (patch) | |
| tree | 711ff5c8fea017cf55a64baf05b3e1cbfb0c50a3 /init-repo.sh | |
| parent | a748410f52642a642d5ce47bbffd0d0f8616e4ad (diff) | |
| download | angular.js-59bfe8e5a9edf7ba000d258b9ac1ef8355c9aca7.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-x | init-repo.sh | 8 | 
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..." | 
