1

我想在 jest-puppeteer 中运行特定的测试套件以实现 UI 自动化。我可以使用下面的来运行特定的测试。

笑话 -t test_name

其中 test_name 来自“it”而不是“describe”,没有引号。

是否还有其他 cmd 也可以运行描述下的所有测试。

4

1 回答 1

2

运行与此规范名称匹配的测试(基本上与描述或测试中的名称匹配)。

jest -t name-of-it
jest -t "name-of-describe"
于 2019-07-05T16:36:52.937 回答