Skip to content
This repository has been archived by the owner on Aug 25, 2023. It is now read-only.

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
hdachev committed Jan 22, 2016
1 parent d84e927 commit 88aac62
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 21 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@ language: node_js
sudo: false

node_js:
- '0.10'
- '0.12'
- '4'
- '5'

cache:
directories:
node_modules

script: node run coverage
script: ./covertest
46 changes: 28 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,37 @@
{ "name": "fakeredis",
"version": "1.0.1",
"description": "Fake redis for testing, works as a drop-in replacement for node_redis",
"keywords": [ "test", "spec", "fake", "redis", "simulated", "implementation", "client" ],
"author": "Hristo Dachev <tutini@gmail.com>",
"main": "./main.js",
"dependencies": {
"redis": "^2.4.2"
},
"license": "MIT",
"bugs": {
"mail": "tutini@gmail.com",
"url": "http://github.com/hdachev/fakeredis/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/hdachev/fakeredis.git"
},
{
"name": "fakeredis",
"version": "1.0.1",
"description": "Fake redis for testing, works as a drop-in replacement for node_redis",
"keywords": [
"test",
"spec",
"fake",
"redis",
"simulated",
"implementation",
"client"
],
"author": "Hristo Dachev <tutini@gmail.com>",
"main": "./main.js",
"dependencies": {
"redis": "^2.4.2"
},
"license": "MIT",
"bugs": {
"mail": "tutini@gmail.com",
"url": "http://github.com/hdachev/fakeredis/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/hdachev/fakeredis.git"
},
"scripts": {
"test": "./runtest",
"coverage": "./covertest"
},
"devDependencies": {
"coveralls": "^2.11.6",
"istanbul": "^0.4.2",
"lcov-result-merger": "^1.0.2"
}
}

0 comments on commit 88aac62

Please sign in to comment.