Remove image generation default enablement

This commit is contained in:
won
2026-04-07 15:09:55 -07:00
parent a68cbed652
commit 700ec9a590
2 changed files with 5 additions and 5 deletions

View File

@@ -752,8 +752,8 @@ pub const FEATURES: &[FeatureSpec] = &[
FeatureSpec {
id: Feature::ImageGeneration,
key: "image_generation",
stage: Stage::Stable,
default_enabled: true,
stage: Stage::UnderDevelopment,
default_enabled: false,
},
FeatureSpec {
id: Feature::SkillMcpDependencyInstall,

View File

@@ -145,9 +145,9 @@ fn use_linux_sandbox_bwrap_is_a_removed_feature_key() {
}
#[test]
fn image_generation_is_stable_and_enabled_by_default() {
assert_eq!(Feature::ImageGeneration.stage(), Stage::Stable);
assert_eq!(Feature::ImageGeneration.default_enabled(), true);
fn image_generation_is_under_development() {
assert_eq!(Feature::ImageGeneration.stage(), Stage::UnderDevelopment);
assert_eq!(Feature::ImageGeneration.default_enabled(), false);
}
#[test]