import { mount } from '@vue/test-utils' import Vuetify from 'vuetify' import Address from '~/components/Ui/Search/Address' let wrapper let vuetify beforeEach(() => { vuetify = new Vuetify() wrapper = mount(Address, { vuetify }) }) describe('components/ui/search/address', () => { it('an input of 1+ cars shall display results', async () => {}) it('position shall be set when a result is clicked', async () => {}) it('position shall be cleared when input is cleared', async () => {}) it('first result shall be selected when enter key is pressed', async () => {}) it('user position shall be set when localize icon is clicked', async () => {}) it('error message shall be displayed if the browser does not support localization', async () => {}) })