import VnLocation from 'src/components/common/VnLocation.vue'; describe('', () => { 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' }, }, }, }); }); });