-
jest-environment-jsdom-latest提供了最新的jsdom API和功能,用于构建模拟浏览器环境进行测试
资源介绍
笑话环境jsdom最新
在Jest环境中使用最新的jsdom API和功能。
安装
npm install jest-environment-jsdom-latest
用法
在index.spec.js或任何版本中:
/**
* @jest -environment jsdom-latest
*/
test ( 'use the latest jsdom features in this test file' , ( ) => {
const element = document . createElement ( 'div' ) ;
expect ( element ) . not . toBeNull ( ) ;
} ) ;
动机
从v10开始, jsdom具有新的API和一些很酷的新功能。 缺点是现在它需要Node版本> = 6。
如Jest文档( here )中所