From 1c988e6471e6c031e7a80266ac2663738a855e50 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 13 Aug 2025 15:33:25 -0500 Subject: [PATCH] Update e2e file --- src/components/Toast/index.e2e.tsx | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/src/components/Toast/index.e2e.tsx b/src/components/Toast/index.e2e.tsx index eff368ac4f..357bd8dda9 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 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() {}