Separate out the wasm test into its own feature/binary.

This commit is contained in:
Tom Alexander
2023-12-25 13:10:40 -05:00
parent 67e5829fd9
commit 65abaa332f
8 changed files with 53 additions and 33 deletions

View File

@@ -9,6 +9,8 @@ mod clock;
mod code;
mod comment;
mod comment_block;
#[cfg(feature = "wasm_test")]
mod compare;
mod diary_sexp;
mod document;
mod drawer;
@@ -62,6 +64,7 @@ mod underline;
mod verbatim;
mod verse_block;
pub(crate) use parse_result::wasm_parse_org;
pub(crate) use parse_result::ParseResult;
pub(crate) use to_wasm::ToWasm;
pub(crate) use to_wasm::ToWasmContext;