Grunt postman(newman)任务挂起
Grunt postman (newman) task hangs
我正在 运行 执行一个 g运行t 任务,该任务 运行 永远存在,没有输出:
我的 grunt.initConfig
包括
newman: {
default_options: {
options: {
iterationCount: 1,
collection: "tests/collection.postman_collection.json",
environment: "tests/env.postman_collection.json"
}
}
这是我从终端 运行 得到的。新手 g运行t 任务 运行 无限期地执行。
Running "newman:default_options" (newman) task
^C
Execution Time (2016-10-07 16:38:54 UTC-5)
loading tasks 1s
newman:default_options 16.2s
Postman 集合可以导出为 v1
和 v2
,Grunt 任务插件仅适用于 v1
类型的集合
我正在 运行 执行一个 g运行t 任务,该任务 运行 永远存在,没有输出:
我的 grunt.initConfig
包括
newman: {
default_options: {
options: {
iterationCount: 1,
collection: "tests/collection.postman_collection.json",
environment: "tests/env.postman_collection.json"
}
}
这是我从终端 运行 得到的。新手 g运行t 任务 运行 无限期地执行。
Running "newman:default_options" (newman) task
^C
Execution Time (2016-10-07 16:38:54 UTC-5)
loading tasks 1s
newman:default_options 16.2s
Postman 集合可以导出为 v1
和 v2
,Grunt 任务插件仅适用于 v1