Launch image generation by default

This commit is contained in:
won
2026-04-08 13:30:17 -07:00
parent 56dfe41605
commit e65c3e11c2
2 changed files with 5 additions and 5 deletions

View File

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

View File

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