Skip to content

Commit

Permalink
tests: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kellyjosephprice committed Nov 4, 2024
1 parent d8d2a25 commit 58e3b38
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions __tests__/migration/tables.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ ${JSON.stringify(
| ------------------------------------------------------------------ |
| <p>¿Necesitas ayuda?</p><p>‍</p><p>Llámanos al +52 33 11224455</p> |
`;
const mdx = rmdx.mdx(rmdx.mdastV6(md));
const mdx = migrate(md);

expect(mdx).toMatchInlineSnapshot(`
"<Table>
Expand Down Expand Up @@ -386,7 +386,7 @@ ${JSON.stringify(
[/block]
`;

const mdx = rmdx.mdx(rmdx.mdastV6(md));
const mdx = migrate(md);

expect(mdx).toMatchInlineSnapshot(`
"<Table align={["left","left","left"]}>
Expand Down Expand Up @@ -450,7 +450,7 @@ ${JSON.stringify(
[/block]
`;

const mdx = rmdx.mdx(rmdx.mdastV6(md));
const mdx = migrate(md);

expect(mdx).toMatchInlineSnapshot(`
"<Table align={["left","left"]}>
Expand Down

0 comments on commit 58e3b38

Please sign in to comment.