如何 运行 jest-puppeteer 中的特定测试套件
How to run specific test suite in jest-puppeteer
我想 运行 jest-puppeteer 中的特定测试套件以实现 UI 自动化。
我可以运行使用下面的具体测试。
jest -t test_name
其中 test_name 来自 "it" 而不是来自 "describe" 没有引号。
是否还有其他命令 运行 也描述了所有测试。
运行 匹配此规范名称的测试(基本上与描述或测试中的名称匹配)。
jest -t name-of-it
jest -t "name-of-describe"
我想 运行 jest-puppeteer 中的特定测试套件以实现 UI 自动化。 我可以运行使用下面的具体测试。
jest -t test_name
其中 test_name 来自 "it" 而不是来自 "describe" 没有引号。
是否还有其他命令 运行 也描述了所有测试。
运行 匹配此规范名称的测试(基本上与描述或测试中的名称匹配)。
jest -t name-of-it
jest -t "name-of-describe"