16 lines
310 B
TypeScript
16 lines
310 B
TypeScript
import { showModal } from './modal'
|
|
import { Toast } from './toast'
|
|
|
|
export const toast = new Toast()
|
|
|
|
/* istanbul ignore next */
|
|
if (process.env.NODE_ENV === 'test') {
|
|
afterEach(() => {
|
|
toast.clear()
|
|
})
|
|
}
|
|
|
|
Object.assign(blessing, { notify: { showModal, toast } })
|
|
|
|
export { showModal } from './modal'
|