diff options
Diffstat (limited to 'tests/xxx_mdx_plugin_recma_jsx_rewrite.rs')
-rw-r--r-- | tests/xxx_mdx_plugin_recma_jsx_rewrite.rs | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/xxx_mdx_plugin_recma_jsx_rewrite.rs b/tests/xxx_mdx_plugin_recma_jsx_rewrite.rs index 497155f..b1d2ca8 100644 --- a/tests/xxx_mdx_plugin_recma_jsx_rewrite.rs +++ b/tests/xxx_mdx_plugin_recma_jsx_rewrite.rs @@ -25,11 +25,10 @@ fn from_markdown(value: &str, options: &RewriteOptions) -> Result<String, String }, )?; let hast = mdast_util_to_hast(&mdast); - let program = hast_util_to_swc(&hast, Some("example.mdx".into()), Some(&location))?; - let program = mdx_plugin_recma_document(program, &DocumentOptions::default(), Some(&location))?; - let program = mdx_plugin_recma_jsx_rewrite(program, options, Some(&location)); - let value = serialize(&program.module); - Ok(value) + let mut program = hast_util_to_swc(&hast, Some("example.mdx".into()), Some(&location))?; + mdx_plugin_recma_document(&mut program, &DocumentOptions::default(), Some(&location))?; + mdx_plugin_recma_jsx_rewrite(&mut program, options, Some(&location)); + Ok(serialize(&program.module)) } #[test] |