salix-front/test/cypress/components/VnLocation.spec.js

18 lines
515 B
JavaScript

import VnLocation from 'src/components/common/VnLocation.vue';
describe('<VnLocation />', () => {
it('renders', () => {
// see: https://on.cypress.io/mounting-vue
cy.vnMount(VnLocation, {
props: {
modelValue: 1234,
location: {
postcode: '46600',
city: ' Alz',
province: { name: 'as' },
country: { name: 'asdq' },
},
},
});
});
});