From 9dee3b44f36705bb653ab299068f2f7c2b27598d Mon Sep 17 00:00:00 2001 From: Julius Riegel Date: Fri, 12 Oct 2018 09:56:37 +0200 Subject: [PATCH] Added test - Testing without request and without running in background --- .circleci/config.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1df06c4..df9f039 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,6 +25,9 @@ jobs: # a collection of steps - run: name: Http Request to server command: wget --retry-connrefused --waitretry=1 --timeout=15 -t 10 http://localhost:8880 + - 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