We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 218517b commit 2b23355Copy full SHA for 2b23355
app/util/feature-flags/index.test.ts
@@ -148,17 +148,6 @@ describe('Feature Flags Utility Functions', () => {
148
expect(result).toBe('string');
149
});
150
151
- it('returns "object" for objects with minimumVersion property that is not string', () => {
152
- const flagValue = {
153
- enabled: true,
154
- minimumVersion: 1.0,
155
- };
156
-
157
- const result = getFeatureFlagType(flagValue);
158
159
- expect(result).toBe('object');
160
- });
161
162
it('returns "object" for objects with value property that is not boolean', () => {
163
const flagValue = {
164
value: 'not boolean',
0 commit comments