Skip to content

Commit 3da7a23

Browse files
committed
prettier
1 parent e6f1729 commit 3da7a23

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Libraries/LogBox/__tests__/LogBox-test.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,9 @@ describe('LogBox', () => {
388388
it('`isIgnoredLog` returns true for ignored log', () => {
389389
jest.unmock('../Data/LogBoxData');
390390
LogBox.ignoreLogs(['ignoreMe']);
391-
expect(LogBox.isIgnoredLog('ignoreMe: message', 'another argument')).toBe(true);
391+
expect(LogBox.isIgnoredLog('ignoreMe: message', 'another argument')).toBe(
392+
true,
393+
);
392394
});
393395

394396
it('`isIgnoredLog` returns true for regexp based ignored log', () => {
@@ -398,7 +400,6 @@ describe('LogBox', () => {
398400
expect(LogBox.isIgnoredLog('ignore123Me')).toBe(true);
399401
});
400402

401-
402403
it('`isIgnoredLog` returns true for any messages when `ignoreAllLogs` was called', () => {
403404
jest.unmock('../Data/LogBoxData');
404405
LogBox.ignoreAllLogs();
@@ -408,7 +409,9 @@ describe('LogBox', () => {
408409
it('`isIgnoredLog` returns false for non-matched ignored log', () => {
409410
jest.unmock('../Data/LogBoxData');
410411
LogBox.ignoreLogs(['ignoreMe']);
411-
expect(LogBox.isIgnoredLog('showMe: message', 'another argument')).toBe(false);
412+
expect(LogBox.isIgnoredLog('showMe: message', 'another argument')).toBe(
413+
false,
414+
);
412415
});
413416

414417
it('`isIgnoredLog` returns false when throwing exception from log parser.', () => {

0 commit comments

Comments
 (0)