VSCode Jest 自动补全配置

1、添加 jestpackage.json

yarn add jest -D

2、安装 @types/jest

yarn add @types/jest

3、在根目录添加/编辑 jsconfig.json

{
    "typeAcquisition": {
        "include": [
            "jest"
        ]
    }
}

你可能感兴趣的:(jest,前端)