Skip to content

Commit 90af5f0

Browse files
committed
Remove ts-ignores
1 parent 5c704ce commit 90af5f0

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

test/lib/customDeepEqual.test.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ describe('customDeepEqual', () => {
4646
});
4747

4848
describe('MediaStream', () => {
49-
// @ts-ignore
5049
const streamA = new MediaStream();
5150
afterEach(() => {
5251
streamA.getTracks().forEach((track) => {
@@ -63,7 +62,6 @@ describe('customDeepEqual', () => {
6362
expect(customDeepEqual(streamA, streamA)).toBe(true);
6463
});
6564
it('returns false when streams are not equal', () => {
66-
// @ts-ignore
6765
const streamB = new MediaStream();
6866
expect(customDeepEqual(streamA, streamB)).toBe(false);
6967
});

0 commit comments

Comments
 (0)