我想在codeception cest测试中只跳过一个测试.
使用Cept测试可以做$scenario->skip();但不适用于Cest测试.
所以我想做这样的事情.运行第一个测试,但跳过第二个测试.
Class MyTests{
public funtion test1(){
// My test steps
}
public function test2(){
$scenario->skip("Work in progress");
}
}
Run Code Online (Sandbox Code Playgroud)
先感谢您.