import { mount } from '@vue/test-utils' import Vuetify from 'vuetify' import Address from '~/components/Ui/Map/Structures' let wrapper let vuetify beforeEach(() => { vuetify = new Vuetify() wrapper = mount(Structures, { vuetify }) }) describe('components/ui/map/structures', () => { it('default bounds shall show metropolitan france', async () => {}) it('structures shall be displayed as markers', async () => {}) it('on click, markers shall show a popup showing their name, address and website', async () => {}) it('on click, geo-shortcuts shall move the map to the given location', async () => {}) it('map shall emit an event when bounds change', async () => {}) it('when called from above, zoomOnResults shall zoom on the new data set', async () => {}) })