Skip to content

Commit 647beef

Browse files
Remove log
1 parent 9bc6446 commit 647beef

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/__tests__/integration/mock.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ describe('OpenFeature Split Provider - Mock Integration Tests', () => {
8787

8888
test('control treatment should be handled correctly', async () => {
8989
try {
90-
provider.resolveBooleanEvaluation('non_existent_feature', false, { targetingKey: 'user_1' });
90+
provider.resolveBooleanEvaluation('non_existent_feature', false, { targetingKey: 'user1' });
9191
} catch (error) {
9292
expect(error.name).toBe('FlagNotFoundError');
9393
expect(error.message).toContain('control');

src/lib/js-split-provider.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,6 @@ export class OpenFeatureSplitProvider implements Provider {
172172
if (Number.isNaN(result)) {
173173
throw new ParseError(`Invalid numeric value ${stringValue}`);
174174
}
175-
console.log(result)
176175
return result;
177176
}
178177

0 commit comments

Comments
 (0)