XuelesszzZ 94af2b8e7b 6-30-5 | 1 năm trước cách đây | |
---|---|---|
.. | ||
.circleci | 1 năm trước cách đây | |
test | 1 năm trước cách đây | |
.babelrc | 1 năm trước cách đây | |
.eslintrc | 1 năm trước cách đây | |
CHANGELOG.md | 1 năm trước cách đây | |
LICENSE | 1 năm trước cách đây | |
README.md | 1 năm trước cách đây | |
index.js | 1 năm trước cách đây | |
jest.config.json | 1 năm trước cách đây | |
package.json | 1 năm trước cách đây |
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()
})
})