标签: javascript ecmascript-6 jestjs arrow-functions
当我使用jest常用功能时,我可以访问this中的测试对象。</ p>
jest
this
afterEach(function() { return this.hello; // 'Hello world!' }) it(function() { this.hello = 'Hello world!'; })
当我使用箭头功能时,this表示全局背景。
当我使用箭头功能时,如何访问测试对象?