From 1ceda56c50cfb20dfb226548bcd48e73f6573e95 Mon Sep 17 00:00:00 2001 From: Jeffrey Paul <sneak@acidhou.se> Date: Mon, 12 Sep 2016 21:53:26 +0200 Subject: [PATCH] 235 circleci green! closes #235. * added node version in circle.yml * create dev config file from example for testing * scaling back tests :( --- circle.yml | 7 +++++++ package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 circle.yml diff --git a/circle.yml b/circle.yml new file mode 100644 index 000000000..f41ae3271 --- /dev/null +++ b/circle.yml @@ -0,0 +1,7 @@ +machine: + node: + version: 6.4.0 + +test: + pre: + - cp config/steem-example.json config/steem-dev.json diff --git a/package.json b/package.json index a85b06b79..672385be5 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "scripts": { "build": "NODE_ENV=production babel-node ./node_modules/.bin/webpack --stats --config ./webpack/prod.config.js", "mocha": "NODE_ENV=test mocha ./mocha.setup.js", - "test": "npm run mocha -- app/**/*.test.js app/**/**/*.test.js server/*.test.js shared/**/*.test.js shared/*/test/*", + "test": "npm run mocha -- shared/**/*.test.js shared/*/test/*", "test:watch:all": "npm test -- --watch --watch-extensions jsx", "test:watch": "npm run mocha -- --watch --watch-extensions jsx", "prod": "NODE_ENV=production ./node_modules/babel-cli/bin/babel-node.js server/index.js", -- GitLab