koel/resources/assets/js/__tests__/stubs.ts
2022-10-10 09:00:30 +02:00

20 lines
484 B
TypeScript

import { Ref, ref } from 'vue'
import { noop } from '@/utils'
import MessageToaster from '@/components/ui/MessageToaster.vue'
import DialogBox from '@/components/ui/DialogBox.vue'
export const MessageToasterStub: Ref<InstanceType<typeof MessageToaster>> = ref({
info: noop,
success: noop,
warning: noop,
error: noop
})
export const DialogBoxStub: Ref<InstanceType<typeof DialogBox>> = ref({
info: noop,
success: noop,
warning: noop,
error: noop,
confirm: noop
})