jest chrome:用于Jest的Chrome扩展Chrome API的完整模型 源码
jest-chrome 与Jest一起使用的Chrome API for Chrome扩展的完整模型。 内置TypeScript支持。每个函数和事件均基于包。 安装 npm i jest-chrome -D 在安装过程中将chrome设置在全局范围内,以便在导入的模块中对其进行模拟。 将设置文件添加到jest.config.js : // jest.config.js module . exports = { // Add this line to your Jest config setupFilesAfterEnv : [ './jest.setup.js' ] , }
用户评论