Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature Management Samples - Removing String tests #923

Merged
merged 1 commit into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions docs/FeatureManagement/Samples/NoFilters.sample.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,6 @@
"client_filters": []
}
},
{
"id": "StringTrue",
"description": "A feature flag with no Filters where enabled is a string, that returns true.",
"enabled": "true",
"conditions": {
"client_filters": []
}
},
{
"id": "StringFalse",
"description": "A feature flag with no Filters where enabled is a string, that returns false.",
"enabled": "false",
"conditions": {
"client_filters": []
}
},
{
"id": "InvalidEnabled",
"description": "A feature flag with an invalid 'enabled' value, that returns false.",
Expand Down
22 changes: 0 additions & 22 deletions docs/FeatureManagement/Samples/NoFilters.tests.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,28 +21,6 @@
},
"Description": "A Disabled Feature Flag with no Filters."
},
{
"FeatureFlagName": "StringTrue",
"Inputs": {},
"IsEnabled": {
"Result": "true"
},
"Variant": {
"Result": null
},
"Description": "An Enabled Feature Flag with no Filters."
},
{
"FeatureFlagName": "StringFalse",
"Inputs": {},
"IsEnabled": {
"Result": "false"
},
"Variant": {
"Result": null
},
"Description": "A Disabled Feature Flag with no Filters."
},
{
"FeatureFlagName": "InvalidEnabled",
"Inputs": {},
Expand Down