Skip to content

Commit

Permalink
feat(android-report): enable android report feature flag (#2535)
Browse files Browse the repository at this point in the history
  • Loading branch information
waabid authored Apr 22, 2020
1 parent 44b2a07 commit 192e0ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/electron/common/unified-feature-flags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ export function getAllFeatureFlagDetailsUnified(): FeatureFlagDetail[] {
},
{
id: UnifiedFeatureFlags.exportReport,
defaultValue: false,
defaultValue: true,
displayableName: 'Show export report button',
displayableDescription: 'Show the export report button on the automated checks window',
isPreviewFeature: false,
forceDefault: false,
forceDefault: true,
},
];
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe('FeatureFlagsTest', () => {
const expectedValues: FeatureFlagStoreData = {
[UnifiedFeatureFlags.logTelemetryToConsole]: false,
[UnifiedFeatureFlags.showAllFeatureFlags]: false,
[UnifiedFeatureFlags.exportReport]: false,
[UnifiedFeatureFlags.exportReport]: true,
};

const featureFlagValueKeys = keys(featureFlagValues);
Expand Down

0 comments on commit 192e0ed

Please sign in to comment.