1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
diff --git a/tests/component.rs b/tests/component.rs
index 7baae0e..fb0e681 100644
--- a/tests/component.rs
+++ b/tests/component.rs
@@ -1,5 +1,5 @@
//! Tests for Abscissa's component functionality
-
+#![cfg(feature = "default")]
mod example_app;
use self::example_app::{ExampleApp, ExampleConfig};
diff --git a/tests/example_app/mod.rs b/tests/example_app/mod.rs
index a97ecd7..44fb6e2 100644
--- a/tests/example_app/mod.rs
+++ b/tests/example_app/mod.rs
@@ -1,5 +1,5 @@
//! Example application used for testing purposes
-
+#![cfg(feature = "default")]
use abscissa_core::{
Application, Command, Configurable, FrameworkError, Runnable, StandardPaths, application,
clap::Parser, config,
|