aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_utils
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_utils')
-rw-r--r--tests/test_utils/mdx_plugin_recma_document.rs6
-rw-r--r--tests/test_utils/mdx_plugin_recma_jsx_rewrite.rs6
2 files changed, 5 insertions, 7 deletions
diff --git a/tests/test_utils/mdx_plugin_recma_document.rs b/tests/test_utils/mdx_plugin_recma_document.rs
index a62862c..5c0d423 100644
--- a/tests/test_utils/mdx_plugin_recma_document.rs
+++ b/tests/test_utils/mdx_plugin_recma_document.rs
@@ -72,10 +72,10 @@ impl Default for Options {
#[allow(dead_code)]
pub fn mdx_plugin_recma_document(
- mut program: Program,
+ program: &mut Program,
options: &Options,
location: Option<&Location>,
-) -> Result<Program, String> {
+) -> Result<(), String> {
// New body children.
let mut replacements = vec![];
@@ -412,7 +412,7 @@ pub fn mdx_plugin_recma_document(
program.module.body = replacements;
- Ok(program)
+ Ok(())
}
/// Create a content component.
diff --git a/tests/test_utils/mdx_plugin_recma_jsx_rewrite.rs b/tests/test_utils/mdx_plugin_recma_jsx_rewrite.rs
index 6a4d451..89e0ebd 100644
--- a/tests/test_utils/mdx_plugin_recma_jsx_rewrite.rs
+++ b/tests/test_utils/mdx_plugin_recma_jsx_rewrite.rs
@@ -31,10 +31,10 @@ pub struct Options {
/// Rewrite JSX in an MDX file so that components can be passed in and provided.
#[allow(dead_code)]
pub fn mdx_plugin_recma_jsx_rewrite(
- mut program: Program,
+ program: &mut Program,
options: &Options,
location: Option<&Location>,
-) -> Program {
+) {
let mut state = State {
scopes: vec![],
location,
@@ -65,8 +65,6 @@ pub fn mdx_plugin_recma_jsx_rewrite(
.body
.push(create_error_helper(state.development, state.path));
}
-
- program
}
/// Collection of different SWC functions.