From 4d3641ad889dd914f154ab288fa946edcd48a58f Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra Date: Sun, 28 Oct 2018 14:36:28 +0530 Subject: [PATCH] fix(ci): remove isolation between ci and local test script --- .travis.yml | 2 +- package.json | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4749b9516f..98a5e4a80e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,4 +24,4 @@ before_script: - git config --global user.name "CamperBot" script: - - npm run test-ci \ No newline at end of file + - npm run test diff --git a/package.json b/package.json index 48f1f15e71..5928155a6e 100644 --- a/package.json +++ b/package.json @@ -8,11 +8,10 @@ "develop": "npm-run-all -s ensure-env start-develop", "ensure-env": "cross-env DEBUG=fcc:* node ./tools/scripts/ensure-env.js", "lint": "echo 'Warning: TODO - Define Linting.'", - "pretest-ci": "npm-run-all -s lint bootstrap", + "pretest": "npm-run-all -s lint", "seed": "cross-env DEBUG=fcc:* node ./tools/scripts/seed/seedChallenges", "start-develop": "node ./tools/scripts/start-develop.js", "test": "npm-run-all -p test:*", - "test-ci": "npm test", "test:client": "cd ./client && npm test && cd ../", "test:curriculum": "cd ./curriculum && npm test && cd ../", "test:guide-directories": "node ./tools/scripts/ci/ensure-guide-page-naming.js",