Skip to content

Commit 6e6f366

Browse files
hugo-vrijswijkrenovate[bot]
authored andcommitted
update
1 parent 4f55491 commit 6e6f366

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

packages/elements/src/lib/browser.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export function isLocalStorageAvailable() {
77
localStorage.setItem(test, test);
88
localStorage.removeItem(test);
99
return true;
10+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
1011
} catch (e) {
1112
return false;
1213
}

packages/real-time/test/unit/mutation-event-sender.spec.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,11 @@ describe(MutationEventSender.name, () => {
7676
responseMock.flush = sinon.stub();
7777

7878
sut.sendMutantTested({ id: '1', status: 'Pending' });
79+
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
7980
sinon.assert.calledOnce(responseMock.flush);
8081

8182
sut.sendFinished();
83+
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
8284
sinon.assert.calledTwice(responseMock.flush);
8385
});
8486
});

0 commit comments

Comments
 (0)