Skip to content

Commit

Permalink
v1.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
fpereiro committed Mar 5, 2023
1 parent bd5fda2 commit 11e91ef
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions hitit.js
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
hitit - v1.2.7
hitit - v1.2.8
Written by Federico Pereiro (fpereiro@gmail.com) and released into the public domain.
*/
Expand Down Expand Up @@ -171,6 +171,7 @@ Written by Federico Pereiro (fpereiro@gmail.com) and released into the public do
}, 1);
}

// https://github.com/mscdex/busboy/blob/master/lib/types/multipart.js#L174
dale.go (content, function (v) {
if (type (v) !== 'object') return log ('Invalid multipart file or field!', v);
if (v.path && ! v.filename) v.filename = Path.basename (v.path);
Expand All @@ -194,7 +195,7 @@ Written by Federico Pereiro (fpereiro@gmail.com) and released into the public do
['map', map, ['function', 'undefined'], 'oneOf'],
], cb)) return;

if (seq.length === 0) return CB (null, []);
if (seq.length === 0) return cb (null, []);
var fseq = [];
var counter = 0;
var hist = [];
Expand Down
6 changes: 3 additions & 3 deletions package.json
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "hitit",
"version": "1.2.7",
"version": "1.2.8",
"description": "Minimalistic tool for API testing.",
"dependencies": {
"dale": "6.0.1",
"dale": "6.0.2",
"mime": "1.6.0",
"teishi": "5.0.2"
"teishi": "5.1.0"
},
"main": "hitit.js",
"author": "Federico Pereiro <fpereiro@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion readme.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ hitit is a minimalistic tool for testing an HTTP(S) API. It is a stopgap until I

## Current status of the project

The current version of hitit, v1.2.7, is considered to be *mostly stable* and *mostly complete*. [Suggestions](https://github.com/fpereiro/hitit/issues) and [patches](https://github.com/fpereiro/hitit/pulls) are welcome. Future changes planned are:
The current version of hitit, v1.2.8, is considered to be *mostly stable* and *mostly complete*. [Suggestions](https://github.com/fpereiro/hitit/issues) and [patches](https://github.com/fpereiro/hitit/pulls) are welcome. Future changes planned are:

- Support for concurrent testing (a.k.a stress testing).

Expand Down

0 comments on commit 11e91ef

Please sign in to comment.