aboutsummaryrefslogtreecommitdiffstats
path: root/tests/msw/server.ts
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2023-12-11 17:52:38 +0100
committerArmand Philippot <git@armandphilippot.com>2023-12-11 17:52:38 +0100
commit93db24b7f7650abac1bb7095026e3a1f367b0c0a (patch)
treec6efd8669d333941494e573d2468a4fb6603b134 /tests/msw/server.ts
parentcd2cb5748be9e9c479d9802dd3897de1cd1cbd9f (diff)
refactor(pages): refine Contact page
* remove next/router dependency * remove pageTitle since it is defined in MDX * reduce statements by grouping messages * mock response with MSW and add test for sendEmail
Diffstat (limited to 'tests/msw/server.ts')
-rw-r--r--tests/msw/server.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/msw/server.ts b/tests/msw/server.ts
new file mode 100644
index 0000000..29504a4
--- /dev/null
+++ b/tests/msw/server.ts
@@ -0,0 +1,4 @@
+import { setupServer } from 'msw/node';
+import { handlers } from './handlers';
+
+export const mswServer = setupServer(...handlers);