Clean up tests

This commit is contained in:
Philip (a-0) 2023-12-07 21:54:24 +01:00
parent e4fe60c06e
commit 32bbe8a8ce
2 changed files with 30 additions and 30 deletions

View file

@ -106,6 +106,10 @@ impl State {
} }
#[cfg(test)]
mod tests {
use crate::state::State;
use crate::state::types::ElementContent;
#[tokio::test] #[tokio::test]
#[serial_test::serial] #[serial_test::serial]
@ -133,3 +137,4 @@ async fn test_update() {
el.content().to_owned() el.content().to_owned()
) )
} }
}

View file

@ -27,8 +27,3 @@ impl TryFrom<&str> for ElementContent {
} }
} }
} }
#[test]
pub fn test() {
}