UNPKG
fastman
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
快速api测试及文档生成
fastman
/
dist
/
src
/
runner
/
newman-runner.d.ts
12 lines
(11 loc)
•
256 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/** * newman runner */
import
{
TestCase
}
from
"../fastman"
;
import
{
Promise
}
from
"es6-promise"
;
export
default
class
NewmanRunner
{
/** * 跑测试 */
run
(
testCase
:
TestCase
,
collectionName
?:
string
):
Promise
<
object
>; }