
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
streamtest
Advanced tools
Streams test library
streamtest is a set of utils to test your stream based modules simply.
In fact, this repository's tests is a perfect example of its own usage ;).
First install streamtest in your project:
npm install --save-dev streamtest
Then, use it:
import StreamTest from 'streamtest';
describe('My Stream Lib', () => {
// here goes your code
it('should work', async (done) => {
const [outputStream, resultPromise] = StreamTest.toText();
StreamTest.fromChunks(['a ', 'chunk', 'and', 'another'])
.pipe(myTestedStream)
.pipe(outputStream);
assert.equal(await resultPromise, 'the text as i should be')
});
});
Feel free to submit us your improvements. To do so, you must accept to publish your code under the MIT license.
To start contributing, first run the following to setup the development environment:
git clone git@github.com:nfroidure/streamtest.git
cd streamtest
npm install
Then, run the tests:
npm test
objectKind: global namespace
object
Create a readable stream streaming objects each
timeout milliseconds and then end. Usefull for
testing objectMode based streams.
Kind: static method of StreamTest
Returns: Readable
| Param | Description |
|---|---|
| objects | Array |
| timeout | number |
Create a readable stream streaming objects each
timeout milliseconds, emit the err error and
then end. Usefull for testing objectMode based
streams.
Kind: static method of StreamTest
Returns: Readable
| Param | Description |
|---|---|
| err | Error |
| objects | Object[] |
| timeout | number |
Create a readable stream streaming chunks each
timeout milliseconds and then end. Usefull for
testing buffer based streams.
Kind: static method of StreamTest
Returns: Readable
| Param | Description |
|---|---|
| chunks | Uint8Array[] |
| timeout | number |
Create a readable stream streaming chunks each
timeout milliseconds, emit the err error and
then end. Usefull for testing buffer based streams.
Kind: static method of StreamTest
Returns: Readable
| Param | Description |
|---|---|
| err | Error |
| objects | Object[] |
| timeout | number |
Create a writable stream collecting written objects
and a promise that resolves when it finishes with
the objects collected.
Kind: static method of StreamTest
Returns: [Writable, Promise]
Create a writable stream collecting written chunks
and a promise that resolves when it finishes with
the chunks collected.
Kind: static method of StreamTest
Returns: [Writable, Promise<Uint8Array[]>]
Create a writable stream collecting written text and a promise that resolves when it finishes with the whole text content.
Kind: static method of StreamTest
Returns: [Writable, Promise]
FAQs
Streams test library
The npm package streamtest receives a total of 2,458 weekly downloads. As such, streamtest popularity was classified as popular.
We found that streamtest demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.