外观
禁止在测试中显示返回。
Jest 中的测试应该是空的,不应返回任何值。如果你要返回 Promise,那么你应该更新测试以使用 async/await。
async/await
test("one", () => { return expect(1).toBe(1); });