mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update e2e file

authored by

Eric Bailey and committed by samuel.fm 1c988e64 4199aab5

+12 -5
+12 -5
src/components/Toast/index.e2e.tsx
··· 1 - import {type ToastApi} from '#/components/Toast/types' 2 - 3 1 export function ToastOutlet() { 4 2 return null 5 3 } 6 4 7 - export const toast: ToastApi = { 8 - show() {}, 9 - } 5 + export const api = () => {} 6 + api.success = () => {} 7 + api.wiggle = () => {} 8 + api.error = () => {} 9 + api.warning = () => {} 10 + api.info = () => {} 11 + api.promise = () => {} 12 + api.custom = () => {} 13 + api.loading = () => {} 14 + api.dismiss = () => {} 15 + 16 + export function show() {}