深水 在不启动http服务器的情况下向Koa应用程序发送虚假请求。 稍后将支持发送multipart数据。 安装 $ npm i koa - sham -- save 用法 const Koa = require ( 'koa' ) ; const sham = require ( 'koa-sham' ) ; const app = new Koa ( ) ; app . use ( ctx => { ctx . body = { status : 1 } ; } ) ; sham ( app , ( err , res , body ) => { console . lo