我正在使用 TestCafe Studio 创建我的测试并使用 testcafe docker 容器执行以.testcafe格式编写的测试。此外,我使用“无人机”作为 CI 环境。下面是我用来执行测试的命令
`- /opt/testcafe/docker/testcafe-docker.sh -c 3 chromium -q --skip-js-errors --ass`ertion-timeout 60000 --selector-timeout 60000 CommonScenarios/*.testcafe
当发生测试失败时,我将无法获得有关测试失败的足够信息。例如下面是打印的错误日志。
1) AssertionError: expected false to be truthy
Browser: Chrome 91.0.4472.124 / Linux 0.0
7
当测试以.testcafe格式执行时,有什么方法可以让我获得关于哪个步骤实际失败的足够详细信息?
(当我运行 .js 格式的测试时,它给出了哪一行失败)