XuelesszzZ 94af2b8e7b 6-30-5 | hace 1 año | |
---|---|---|
.. | ||
.circleci | hace 1 año | |
test | hace 1 año | |
.babelrc | hace 1 año | |
.eslintrc | hace 1 año | |
CHANGELOG.md | hace 1 año | |
LICENSE | hace 1 año | |
README.md | hace 1 año | |
index.js | hace 1 año | |
jest.config.json | hace 1 año | |
package.json | hace 1 año |
Jest Vue snapshot serializer
npm install --save-dev jest-serializer-vue
You need to tell Jest to use the serializer. Add this to your Jest config:
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
]
And your snapshot tests will be pretty printed 💅
import { shallow } from 'avoriaz'
import Basic from './Basic.vue'
import { createRenderer } from 'vue-server-renderer'
describe('Basic.vue', () => {
it('renders correctly', () => {
const wrapper = shallow(Basic)
expect(wrapper.html()).toMatchSnapshot()
})
})