We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c836198 + e4715f7 commit 318027eCopy full SHA for 318027e
circle.yml
@@ -0,0 +1,17 @@
1
+machine:
2
+ node:
3
+ version: 4.0
4
+ environment:
5
+ CONTINUOUS_INTEGRATION: true
6
+
7
+dependencies:
8
+ cache_directories:
9
+ - node_modules
10
+ override:
11
+ - npm prune && npm install
12
13
+test:
14
15
+ - npm run lint
16
+ - npm test
17
+ - npm run test-node
karma.conf.js
@@ -5,7 +5,7 @@ module.exports = function (config) {
browsers: ['PhantomJS'],
- singleRun: !!process.env.CONTINUOUS_INTEGRATION,
+ singleRun: !!process.env.CI,
frameworks: [ 'mocha' ],
0 commit comments