forked from orlandov/azathoth
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update tests to work with node 0.4
- Loading branch information
Showing
6 changed files
with
34 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
results*.log | ||
results*.html | ||
results-* | ||
*.tpl.js | ||
.reporting.test-output.html | ||
tmp | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
./results-* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
## v0.4.0 (2011/06/16) ## | ||
|
||
Compatible with node v0.4.x | ||
|
||
## v0.3.0 (2011/06/16) ## | ||
|
||
Compatible with node v0.3.x | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,48 @@ | ||
{ | ||
"name": "nodeload", | ||
"version": "0.3.0", | ||
"version": "0.4.0", | ||
"description": "Load testing library for node.js", | ||
"url": "https://github.com/benschmaus/nodeload", | ||
"engines": { | ||
"node": ">=0.3.0 <0.4.0" | ||
"keywords": ["testing", "load testing", "http"], | ||
"homepage": "https://github.com/benschmaus/nodeload", | ||
"engines": { | ||
"node": "0.4" | ||
}, | ||
"contributors": [ | ||
"Benjamin Schmaus <[email protected]>", | ||
"Jonathan Lee <[email protected]>", | ||
"Robert Newson <[email protected]>", | ||
"Michael Mattozzi <[email protected]>" | ||
], | ||
"bugs": { | ||
"web" : "https://github.com/benschmaus/nodeload/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "http://g ithub.com/benschmaus/nodeload" | ||
"type": "git", | ||
"url": "http://github.com/benschmaus/nodeload" | ||
}, | ||
"main": "./nodeload.js", | ||
"bin": { | ||
"nodeload.js": "./nodeload.js", | ||
"nl.js": "./nl.js" | ||
}, | ||
"modules": { | ||
"config": "./lib/config", | ||
"loop": "./lib/loop", | ||
"stats": "./lib/stats", | ||
"monitoring": "./lib/monitoring", | ||
"http": "./lib/http", | ||
"reporting": "./lib/reporting", | ||
"remote": "./lib/remote" | ||
"directories": { | ||
"doc": "./doc", | ||
"lib": "./lib", | ||
"example": "./examples" | ||
}, | ||
"scripts": { | ||
"test": "expresso", | ||
"preinstall": "make clean compile" | ||
}, | ||
"devDependencies": { | ||
"expresso": ">=0.7.0" | ||
"expresso": ">=0.7.7" | ||
}, | ||
"dependencies": { | ||
} | ||
}, | ||
"licenses": [ | ||
{ | ||
"type": "MIT", | ||
"url": "https://github.com/benschmaus/nodeload/raw/master/LICENSE" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -210,4 +210,6 @@ module.exports = { | |
assert.equal(m.stats['runtime'].length, 5); | ||
}); | ||
} | ||
}; | ||
}; | ||
|
||
process.setMaxListeners(20); |