mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
fix: add experimental flag (#4649)
This commit is contained in:
parent
26ade79d66
commit
f6a157f2f5
@ -74,6 +74,7 @@ exports[`should create default config 1`] = `
|
||||
"demo": false,
|
||||
"disableBulkToggle": false,
|
||||
"disableNotifications": false,
|
||||
"doraMetrics": false,
|
||||
"embedProxy": true,
|
||||
"embedProxyFrontend": true,
|
||||
"featureNamingPattern": false,
|
||||
@ -109,6 +110,7 @@ exports[`should create default config 1`] = `
|
||||
"demo": false,
|
||||
"disableBulkToggle": false,
|
||||
"disableNotifications": false,
|
||||
"doraMetrics": false,
|
||||
"embedProxy": true,
|
||||
"embedProxyFrontend": true,
|
||||
"featureNamingPattern": false,
|
||||
|
@ -128,6 +128,10 @@ const flags: IFlags = {
|
||||
process.env.UNLEASH_EXPERIMENTAL_FEATURE_NAMING_PATTERN,
|
||||
false,
|
||||
),
|
||||
doraMetrics: parseEnvVarBoolean(
|
||||
process.env.UNLEASH_EXPERIMENTAL_DORA_METRICS,
|
||||
false,
|
||||
),
|
||||
};
|
||||
|
||||
export const defaultExperimentalOptions: IExperimentalOptions = {
|
||||
|
Loading…
Reference in New Issue
Block a user