Ocelot-Social/components/ModalTestbed.vue
Robert Schäfer 93a0e6654d Fledge out the test case for ReportModal
@Tirokk I think I could narrow down our problem to an additional call of
Wrapper(). The fact that we have to call it at least twice is a strong
indicator of non-atomic tests, which is bad.
2019-03-08 20:41:17 +01:00

20 lines
244 B
Vue

<template>
<div>
<portal-target
id="portal"
name="modal"
/>
<report-modal />
</div>
</template>
<script>
import ReportModal from './ReportModal.vue'
export default {
components: {
ReportModal
}
}
</script>