* chore: make aware eslint that we use jest By setting up the jest environment, we no longer need to declare the 'test' global in the configuration. * chore: don't need to import expect, it's a jest environment global * chore: don't need to import expect when creating undefined test
19 lines
607 B
JavaScript
19 lines
607 B
JavaScript
const { isStream } = require('./_30s.js');
|
|
const Stream = require('stream');
|
|
|
|
test('isStream is a Function', () => {
|
|
expect(isStream).toBeInstanceOf(Function);
|
|
});
|
|
test('isStream returns true for read streams', () => {
|
|
expect(isStream(new Stream.Readable())).toBeTruthy();
|
|
});
|
|
test('isStream returns true for write streams', () => {
|
|
expect(isStream(new Stream.Writable())).toBeTruthy();
|
|
});
|
|
test('isStream returns true for duplex streams', () => {
|
|
expect(isStream(new Stream.Duplex())).toBeTruthy();
|
|
});
|
|
test('isStream returns false for non-streams', () => {
|
|
expect(isStream({})).toBeFalsy();
|
|
});
|