lihai 8d6c751f49 feat: push 2 vuotta sitten
..
.circleci 8d6c751f49 feat: push 2 vuotta sitten
test 8d6c751f49 feat: push 2 vuotta sitten
.babelrc 8d6c751f49 feat: push 2 vuotta sitten
.eslintrc 8d6c751f49 feat: push 2 vuotta sitten
CHANGELOG.md 8d6c751f49 feat: push 2 vuotta sitten
LICENSE 8d6c751f49 feat: push 2 vuotta sitten
README.md 8d6c751f49 feat: push 2 vuotta sitten
index.js 8d6c751f49 feat: push 2 vuotta sitten
jest.config.json 8d6c751f49 feat: push 2 vuotta sitten
package.json 8d6c751f49 feat: push 2 vuotta sitten

README.md

jest-serializer-vue

Jest Vue snapshot serializer

Installation

npm install --save-dev jest-serializer-vue

Usage

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()
  })
})