UNPKG

fastman

Version:

快速api测试及文档生成

12 lines (11 loc) 256 B
/** * newman runner */ import { TestCase } from "../fastman"; import { Promise } from "es6-promise"; export default class NewmanRunner { /** * 跑测试 */ run(testCase: TestCase, collectionName?: string): Promise<object>; }