Skip to content

Commit fd3e94c

Browse files
author
Eugene Orlovsky
committed
test: testing not case sensitive scenarios
1 parent 45ff43f commit fd3e94c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/utils/payloadStringify.test.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -360,12 +360,11 @@ describe('payloadStringify', () => {
360360
});
361361

362362
// fallback to defaults, should also be case-insensitive
363-
delete process.env[LUMIGO_SECRET_MASKING_REGEX_HTTP_REQUEST_BODIES]
363+
delete process.env[LUMIGO_SECRET_MASKING_REGEX_HTTP_REQUEST_BODIES];
364364
expect(shallowMask('requestBody', { a: 'b', PaSSwoRd: 'bla' })).toEqual({
365365
a: 'b',
366366
PaSSwoRd: '****',
367367
});
368-
369368
});
370369

371370
test('shallowMask -> requestBody -> regex -> bypass', () => {

0 commit comments

Comments
 (0)