mirror of
https://github.com/openai/codex.git
synced 2026-05-23 12:34:25 +00:00
Enable plugin hooks by default
This commit is contained in:
@@ -976,8 +976,8 @@ pub const FEATURES: &[FeatureSpec] = &[
|
||||
FeatureSpec {
|
||||
id: Feature::PluginHooks,
|
||||
key: "plugin_hooks",
|
||||
stage: Stage::UnderDevelopment,
|
||||
default_enabled: false,
|
||||
stage: Stage::Stable,
|
||||
default_enabled: true,
|
||||
},
|
||||
FeatureSpec {
|
||||
id: Feature::InAppBrowser,
|
||||
|
||||
@@ -183,6 +183,12 @@ fn tool_search_is_stable_and_enabled_by_default() {
|
||||
assert_eq!(Feature::ToolSearch.default_enabled(), true);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn plugin_hooks_are_stable_and_enabled_by_default() {
|
||||
assert_eq!(Feature::PluginHooks.stage(), Stage::Stable);
|
||||
assert_eq!(Feature::PluginHooks.default_enabled(), true);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn browser_controls_are_stable_and_enabled_by_default() {
|
||||
assert_eq!(Feature::InAppBrowser.stage(), Stage::Stable);
|
||||
|
||||
Reference in New Issue
Block a user