caoge c760052ff9 机车状态修改 | преди 8 месеца | |
---|---|---|
.. | ||
.circleci | преди 8 месеца | |
test | преди 8 месеца | |
.babelrc | преди 8 месеца | |
.eslintrc | преди 8 месеца | |
CHANGELOG.md | преди 8 месеца | |
LICENSE | преди 8 месеца | |
README.md | преди 8 месеца | |
index.js | преди 8 месеца | |
jest.config.json | преди 8 месеца | |
package.json | преди 8 месеца |
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()
})
})