2024-07-07 15:32:30 +00:00
|
|
|
import {showInfoToast, showErrorToast, showWarningToast} from './toast.ts';
|
2023-06-27 02:45:24 +00:00
|
|
|
|
|
|
|
test('showInfoToast', async () => {
|
2023-08-23 07:25:13 +00:00
|
|
|
showInfoToast('success 😀', {duration: -1});
|
2023-06-27 02:45:24 +00:00
|
|
|
expect(document.querySelector('.toastify')).toBeTruthy();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('showWarningToast', async () => {
|
2023-08-23 07:25:13 +00:00
|
|
|
showWarningToast('warning 😐', {duration: -1});
|
2023-06-27 02:45:24 +00:00
|
|
|
expect(document.querySelector('.toastify')).toBeTruthy();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('showErrorToast', async () => {
|
2023-08-23 07:25:13 +00:00
|
|
|
showErrorToast('error 🙁', {duration: -1});
|
2023-06-27 02:45:24 +00:00
|
|
|
expect(document.querySelector('.toastify')).toBeTruthy();
|
|
|
|
});
|