篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Instalacióyuso de Jest con ES6相关的知识,希望对你有一定的参考价值。
# Jest
npm install --save-dev babel-jest babel-preset-env babel-core regenerator-runtime (puese que regenerator-runtime no sea necesario)
## package.json
(https://jestjs.io/docs/en/configuration.html)
### Pimer nivel:
"jest": {
"verbose": true,
"testURL": "http://localhost/"
},
Esto evita el error 'SecurityError: localStorage is not available for opaque origins'
### Dentro de "scripts":
"test": "jest"
"watch": "jest --watchAll *.js" -> Para hot reloading
Hacer un archivo <file_name>.test.js
npm run test
## Testear DOM element
- npm install --save-dev jest-dom
```javascript
import { getById } from './utils'
import 'jest-dom/extend-expect'
it('getById', () => {
document.body.innerHTML = /*html*/`
<div class="container" id="input-container"></div>`
expect(getById('input-container').outerHTML).toBe('<div class="container" id="input-container"></div>')
})
```
以上是关于markdown Instalacióyuso de Jest con ES6的主要内容,如果未能解决你的问题,请参考以下文章