diff --git a/tests/WebRTCStats.test.ts b/tests/WebRTCStats.test.ts index 19c58e3..36cdfef 100644 --- a/tests/WebRTCStats.test.ts +++ b/tests/WebRTCStats.test.ts @@ -55,15 +55,6 @@ const getResult = (data: any): Promise => { }; describe('webRTCStats', () => { - test('webRTCStats should match the snapshot', () => { - const collection = new WebRTCStats({ - getStatsInterval: 100, - getStats: () => getLocalStats(first), - }); - - expect(collection).toMatchSnapshot(); - }); - test('start / stop', async () => { const expectedCalls = 2; const interval = 50; diff --git a/tests/__snapshots__/WebRTCStats.test.ts.snap b/tests/__snapshots__/WebRTCStats.test.ts.snap deleted file mode 100644 index 4f9f275..0000000 --- a/tests/__snapshots__/WebRTCStats.test.ts.snap +++ /dev/null @@ -1,13 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[`webRTCStats webRTCStats should match the snapshot 1`] = ` -WebRTCStats { - "_events": {}, - "_eventsCount": 0, - "_maxListeners": undefined, - "start": [Function], - "stop": [Function], - Symbol(shapeMode): false, - Symbol(kCapture): false, -} -`;