diff options
| author | nanalelfe <nargiza.nosirova@mail.utoronto.ca> | 2016-07-23 01:37:34 +0000 |
|---|---|---|
| committer | nanalelfe <nargiza.nosirova@mail.utoronto.ca> | 2016-07-23 01:37:34 +0000 |
| commit | 107d6ad8cfeead5bafe90f2005fe341c849f36df (patch) | |
| tree | 3a49d74c50f6285ef7ac93e115281561bf762e2d /node_modules/connect-mongo/.travis.yml | |
| parent | 3438e19cea85ae530afd1535fe0384a8beebec90 (diff) | |
Changed session storage to mongo
Diffstat (limited to 'node_modules/connect-mongo/.travis.yml')
| -rw-r--r-- | node_modules/connect-mongo/.travis.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/node_modules/connect-mongo/.travis.yml b/node_modules/connect-mongo/.travis.yml new file mode 100644 index 0000000..6b327a7 --- /dev/null +++ b/node_modules/connect-mongo/.travis.yml @@ -0,0 +1,18 @@ +language: node_js + +node_js: + - 0.12 + - 4 + - 5 + - 6 + +services: mongodb + +sudo: false + +script: + - if [[ $TRAVIS_NODE_VERSION == "0.12" ]]; then npm run test-es5; fi; + - if [[ $TRAVIS_NODE_VERSION != "0.12" ]]; then npm run test; fi; + +after_script: + - if [[ $TRAVIS_NODE_VERSION != "0.12" ]]; then npm install coveralls && cat ./coverage/lcov.info | coveralls; fi; |
