From 0f2ca19c6c7d4add64c9ccfcfbaa13b8bdd57be6 Mon Sep 17 00:00:00 2001 From: asmsuechan Date: Wed, 5 Jul 2017 13:33:07 +0900 Subject: [PATCH] Remove the script of e2e test --- package.json | 1 - script/e2e-runner.sh | 9 --------- 2 files changed, 10 deletions(-) delete mode 100755 script/e2e-runner.sh diff --git a/package.json b/package.json index da6d9ab1..9fad7db8 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,6 @@ "webpack": "webpack-dev-server --hot --inline --config webpack.config.js", "compile": "grunt compile", "test": "PWD=$(pwd) NODE_ENV=test ava", - "test:e2e": "NODE_ENV=test ava tests/e2e/*", "fix": "npm run lint --fix", "lint": "eslint .", "dev-start": "concurrently --kill-others \"npm run webpack\" \"npm run hot\"" diff --git a/script/e2e-runner.sh b/script/e2e-runner.sh deleted file mode 100755 index 32a1ffc5..00000000 --- a/script/e2e-runner.sh +++ /dev/null @@ -1,9 +0,0 @@ -if [[ ${TRAVIS_OS_NAME} = "linux" ]]; then - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start; - sleep 3 -fi - -npm install grunt-cli -g -grunt pre-build -npm run test:e2e