stdio test:Node.js控制台并输出模拟库 源码
标准IO测试 一个Node.js库,它模拟控制台和stdout进行测试。 开始使用 npm install --save-dev stdio-test 用法示例 模拟console.log const withConsoleLog = require ( "stdio-test" ) . withConsoleLog ; const stream = withConsoleLog ( ( ) => { process . stdout . write ( "some data" ) ; } ) ; // use stream.buffers to get buffers 模拟process.stdout.write const withStdoutWrite = require ( "stdio-test" ) . withStdoutWrite ; const stream
用户评论