XuelesszzZ 94af2b8e7b 6-30-5 1 year ago
..
.circleci 94af2b8e7b 6-30-5 1 year ago
test 94af2b8e7b 6-30-5 1 year ago
.babelrc 94af2b8e7b 6-30-5 1 year ago
.eslintrc 94af2b8e7b 6-30-5 1 year ago
CHANGELOG.md 94af2b8e7b 6-30-5 1 year ago
LICENSE 94af2b8e7b 6-30-5 1 year ago
README.md 94af2b8e7b 6-30-5 1 year ago
index.js 94af2b8e7b 6-30-5 1 year ago
jest.config.json 94af2b8e7b 6-30-5 1 year ago
package.json 94af2b8e7b 6-30-5 1 year ago

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