diff options
Diffstat (limited to 'src/components/Toast/index.e2e.tsx')
-rw-r--r-- | src/components/Toast/index.e2e.tsx | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/src/components/Toast/index.e2e.tsx b/src/components/Toast/index.e2e.tsx index 64072d88d..357bd8dda 100644 --- a/src/components/Toast/index.e2e.tsx +++ b/src/components/Toast/index.e2e.tsx @@ -1,9 +1,16 @@ -import {type ToastApi} from '#/components/Toast/types' - -export function ToastContainer() { +export function ToastOutlet() { return null } -export const toast: ToastApi = { - show() {}, -} +export const api = () => {} +api.success = () => {} +api.wiggle = () => {} +api.error = () => {} +api.warning = () => {} +api.info = () => {} +api.promise = () => {} +api.custom = () => {} +api.loading = () => {} +api.dismiss = () => {} + +export function show() {} |