我必须对beforeEach进行参数设置,因为我正在其中调用clearCaches() 问题是,我收到一条警告消息: DeprecationWarning:不建议调用不带回调的异步函数。
我认为这是因为传递给beforeEach的参数一次又一次地被调用,而没有回调。有人知道如何解决这个问题吗?
beforeEach( async function () {
Log.test(`BeforeTest: ${this.currentTest.title}`);
// Clear caches directory
await clearCaches();
});