gpt4 book ai didi

jestjs - 如何导入Jest?

转载 作者:行者123 更新时间:2023-12-03 11:51:35 28 4
gpt4 key购买 nike

我想在Jest测试代码中摆脱全局变量。具体来说describeitexpect:

describe('Welcome (Snapshot)', () => {
it('Welcome renders hello world', () => {
...
});
});
所以我尝试添加:
import {describe,it} from 'jest';
import jest from 'jest';

jest.describe( ...
jest.it( ...
和其他变化...
但是没有运气。
我应该如何运作?

最佳答案

最简单的解决方案是在ESLintjest: true配置中添加env,如下所示:

"env": {
"browser": true,
"node": true,
"jasmine": true,
"jest": true,
"es6": true
},

关于jestjs - 如何导入Jest?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41324636/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com