API测试
使用 es7 和 jasmine 测试 API。
用法
启动 API 服务器
npm start
在单独的 shell 中运行测试
npm test
编写测试
测试是用 Jasmine 编写的,使用 es7 和 babel 作为预处理器。 检查src/test/hello.spec.js以获得灵感。
使用babel导入req和 polyfill
import request from '../lib/req' ;
import 'babel/polyfill' ;
如果您愿意,请设置基本网址
request . setBaseUrl ( 'http://localhost:3000' ) ;
创建测试
describe ( 'GET /api/hello-method' , function ( ) {
let req = request . get ( `
1