设置在每个用例执行前执行的函数,一般用于单用例数据准备等场景。
名称
待执行函数
import * as test from 'testing';test.beforeEach('name', () => { // 每个用例执行前执行的代码。}); Copy
import * as test from 'testing';test.beforeEach('name', () => { // 每个用例执行前执行的代码。});
设置在每个用例执行前执行的函数,一般用于单用例数据准备等场景。