mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-13 15:36:25 +00:00
12 lines
315 B
TypeScript
12 lines
315 B
TypeScript
|
import { Readable } from 'stream';
|
||
|
import { streamToString } from './streams';
|
||
|
|
||
|
describe('util/streams', () => {
|
||
|
describe('streamToString', () => {
|
||
|
it('handles Readables', async () => {
|
||
|
const res = await streamToString(Readable.from(['abc', 'zxc']));
|
||
|
expect(res).toBe('abczxc');
|
||
|
});
|
||
|
});
|
||
|
});
|