Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-magana committed Feb 7, 2025
1 parent 0fd1c08 commit c8d0969
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/app/lib/analyticsUtils/sendBeacon/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,10 @@ describe('sendBeacon', () => {
});

it('should not call Reverb viewEvent if Reverb is not enabled for a service', async () => {
await sendBeacon('https://foobar.com', reverbConfigWhenReverbIsDisabled);
await sendBeacon(
'https://foobar.com',
reverbConfigWhenReverbIsDisabled,
);

expect(reverbMock.viewEvent).not.toHaveBeenCalled();
});
Expand Down

0 comments on commit c8d0969

Please sign in to comment.