From 7642a57c37f0e9036fc977f3f59e5edec6658626 Mon Sep 17 00:00:00 2001 From: Julius Riegel Date: Fri, 12 Oct 2018 16:42:11 +0200 Subject: [PATCH] Changes in testing config - removed atrifact and result storage because they don't exist - renamed dependency install - changed loglevel --- .circleci/config.yml | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fb8f597..7100338 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,12 +7,12 @@ jobs: # a collection of steps steps: # a collection of executable commands - checkout # special step to check out source code to working directory - run: - name: update-npm + name: Update npm command: 'sudo npm install -g npm@latest' - restore_cache: # special step to restore the dependency cache key: dependency-cache-{{ checksum "package.json" }} - run: - name: install-npm-wee + name: Install dependencies command: npm install - save_cache: # special step to save the dependency cache key: dependency-cache-{{ checksum "package.json" }} @@ -20,7 +20,7 @@ jobs: # a collection of steps - ./node_modules - run: # run tests name: Start server in background - command: node server.js --port=8880 + command: node server.js --port=8880 --loglevel=debug background: true - run: name: Valid HTTP Request to server @@ -30,13 +30,5 @@ jobs: # a collection of steps command: 'wget --retry-connrefused --waitretry=1 --timeout=15 -t 10 http://localhost:8880/invalid || :' - run: name: Run server without request - command: node server.js --test --port=8888 - - store_artifacts: # special step to save test results as as artifact - path: test-results.xml - prefix: tests - - store_artifacts: - path: coverage - prefix: coverage - - store_test_results: # special step to upload test results for display in Test Summary - path: test-results.xml + command: node server.js --test --port=8888 --loglevel=debug # See https://circleci.com/docs/2.0/deployment-integrations/ for deploy examples