diff --git a/script-angular/e2e-test.bat b/script-angular/e2e-test.bat deleted file mode 100644 index c89a708a14..0000000000 --- a/script-angular/e2e-test.bat +++ /dev/null @@ -1,11 +0,0 @@ -@echo off - -REM Windows script for running e2e tests -REM You have to run server and capture some browser first -REM -REM Requirements: -REM - NodeJS (http://nodejs.org/) -REM - Testacular (npm install -g testacular) - -set BASE_DIR=%~dp0 -testacular start "%BASE_DIR%\..\config\testacular-e2e.conf.js" %* diff --git a/script-angular/e2e-test.sh b/script-angular/e2e-test.sh deleted file mode 100755 index e887c34f41..0000000000 --- a/script-angular/e2e-test.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -BASE_DIR=`dirname $0` - -echo "" -echo "Starting Testacular Server (http://vojtajina.github.com/testacular)" -echo "-------------------------------------------------------------------" - -testacular start $BASE_DIR/../config/testacular-e2e.conf.js $* diff --git a/script-angular/update-repo.sh b/script-angular/update-repo.sh deleted file mode 100755 index 5a85bfd116..0000000000 --- a/script-angular/update-repo.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash - -### -# This scripts updates the local repo with the latest changes from github. -# -# The master branch will be REPLACED with what's in github and all local changes -# will be LOST. -### - -git checkout master -git fetch -f origin -git fetch --tags origin -git reset --hard origin/master