diff --git a/client/web/src/components/__tests__/Markdown.spec.tsx b/client/web/src/components/__tests__/Markdown.spec.tsx
index 58f9d863..332bc722 100644
--- a/client/web/src/components/__tests__/Markdown.spec.tsx
+++ b/client/web/src/components/__tests__/Markdown.spec.tsx
@@ -46,4 +46,15 @@ describe('Markdown', () => {
expect(wrapper.container).toMatchSnapshot();
});
});
+
+ test('table', async () => {
+ const text = `
+| A | B |
+| --- | --- |
+| 1 | 2 |
+| 3 | 4 |
+ `;
+ const wrapper = await renderLazy(
+ A + | ++ B + | +
---|---|
+ 1 + | ++ 2 + | +
+ 3 + | ++ 4 + | +