Skip to content

Commit 2b23355

Browse files
committed
fix test
1 parent 218517b commit 2b23355

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

app/util/feature-flags/index.test.ts

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -148,17 +148,6 @@ describe('Feature Flags Utility Functions', () => {
148148
expect(result).toBe('string');
149149
});
150150

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-
162151
it('returns "object" for objects with value property that is not boolean', () => {
163152
const flagValue = {
164153
value: 'not boolean',

0 commit comments

Comments
 (0)