summaryrefslogtreecommitdiffstats
path: root/src/components/organisms/forms/contact-form.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/organisms/forms/contact-form.test.tsx')
-rw-r--r--src/components/organisms/forms/contact-form.test.tsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/organisms/forms/contact-form.test.tsx b/src/components/organisms/forms/contact-form.test.tsx
index 744f147..6225fa9 100644
--- a/src/components/organisms/forms/contact-form.test.tsx
+++ b/src/components/organisms/forms/contact-form.test.tsx
@@ -2,7 +2,9 @@ import { render, screen } from '@test-utils';
import ContactForm from './contact-form';
const props = {
- sendMail: () => null,
+ sendMail: async () => {
+ /** Do nothing. */
+ },
};
describe('ContactForm', () => {