summaryrefslogtreecommitdiff
path: root/tests/support
diff options
context:
space:
mode:
Diffstat (limited to 'tests/support')
-rw-r--r--tests/support/common.rs12
-rw-r--r--tests/support/mod.rs1
2 files changed, 13 insertions, 0 deletions
diff --git a/tests/support/common.rs b/tests/support/common.rs
new file mode 100644
index 00000000..8db5c52b
--- /dev/null
+++ b/tests/support/common.rs
@@ -0,0 +1,12 @@
+use std::sync::Once;
+
+static INIT: Once = Once::new();
+
+pub fn setup() {
+ INIT.call_once(|| {
+ tracing_subscriber::fmt()
+ .with_test_writer()
+ .with_max_level(tracing::Level::WARN)
+ .init();
+ });
+}
diff --git a/tests/support/mod.rs b/tests/support/mod.rs
index 5e2a6d78..c46f39e5 100644
--- a/tests/support/mod.rs
+++ b/tests/support/mod.rs
@@ -1 +1,2 @@
+pub mod common;
pub mod factory_bot;