gpt4 book ai didi

testing - Grunt + 功能测试

转载 作者:行者123 更新时间:2023-11-28 21:30:36 26 4
gpt4 key购买 nike

我设置了 grunt 任务,以便在我的本地机器上使用 CasperJS 进行一些功能测试。一切正常。

我想知道是否有办法一直运行测试直到失败?或者通过一定次数的测试?

最佳答案

在 powershell 中,您可以“cd”到目录并使用以下一行代码:

do { grunt } while (1 -eq 1}

这是 Bash 中的等价物:

while [ 1 -eq 1 ]; do grunt done

这应该在无限循环中一遍又一遍地运行 grunt,您可以使用 ctrl + c 停止。如果您希望它在失败时立即停止,您将需要一个脚本(我提供了 Bash,因为我对 powershell 不是很熟悉):

#! /bin/sh
result=0
while [ $result -eq 0 ]; do
grunt || result=1
done

关于testing - Grunt + 功能测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23792150/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com