diff --git a/src/make.rs b/src/make.rs index 7e1f579..fc24b01 100644 --- a/src/make.rs +++ b/src/make.rs @@ -324,6 +324,7 @@ If you installed elm locally with npm, maybe try running with npx such as: Command::new(executable) .env("ELM_HOME", elm_home) .arg("make") + .arg("--optimize") .arg(format!("--output={}", output)) .args(report_arg) .args(src) diff --git a/templates/Runner.elm b/templates/Runner.elm index 1ce7193..b07888c 100644 --- a/templates/Runner.elm +++ b/templates/Runner.elm @@ -29,11 +29,8 @@ check = checkHelperReplaceMe___ : a -> b -checkHelperReplaceMe___ _ = - Debug.todo """The regex for replacing this Debug.todo with some real code must have failed since you see this message! - -Please report this bug: https://github.com/mpizenberg/elm-test-rs/issues/new -""" +checkHelperReplaceMe___ a = + checkHelperReplaceMe___ a tests : List Test