Skip to content

Commit 0e7faa7

Browse files
committed
Fix the test cases
1 parent 70e7e8e commit 0e7faa7

File tree

4 files changed

+91
-91
lines changed

4 files changed

+91
-91
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@
6161
"@rollup/plugin-node-resolve": "^16.0.1",
6262
"@types/jest": "^30.0.0",
6363
"@types/node": "^24.2.0",
64-
"@typescript-eslint/eslint-plugin": "^8.38.0",
65-
"@typescript-eslint/parser": "^8.38.0",
64+
"@typescript-eslint/eslint-plugin": "^8.39.0",
65+
"@typescript-eslint/parser": "^8.39.0",
6666
"bootstrap": "3.4.1",
6767
"buffer": "^6.0.3",
6868
"coveralls": "^3.1.1",

src/mediaStreams.spec.ts

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -306,50 +306,50 @@ describe('MediaStreamsImpl', () => {
306306
.spyOn(mockSession.sessionDescriptionHandler.peerConnection, 'iceConnectionState', 'get')
307307
.mockReturnValue('new');
308308
mockSession.sessionDescriptionHandler.peerConnection.emit('iceconnectionstatechange', null);
309-
expect(mockOnMediaConnectionStateChange).toBeCalledWith('mediaConnectionStateNew', mockSession);
310-
expect(mediaConnectionStateNew).toBeCalled();
309+
expect(mockOnMediaConnectionStateChange).toHaveBeenCalledWith('mediaConnectionStateNew', mockSession);
310+
expect(mediaConnectionStateNew).toHaveBeenCalled();
311311

312312
jest
313313
.spyOn(mockSession.sessionDescriptionHandler.peerConnection, 'iceConnectionState', 'get')
314314
.mockReturnValue('checking');
315315
mockSession.sessionDescriptionHandler.peerConnection.emit('iceconnectionstatechange', null);
316-
expect(mockOnMediaConnectionStateChange).toBeCalledWith('mediaConnectionStateChecking', mockSession);
317-
expect(mediaConnectionStateChecking).toBeCalled();
316+
expect(mockOnMediaConnectionStateChange).toHaveBeenCalledWith('mediaConnectionStateChecking', mockSession);
317+
expect(mediaConnectionStateChecking).toHaveBeenCalled();
318318

319319
jest
320320
.spyOn(mockSession.sessionDescriptionHandler.peerConnection, 'iceConnectionState', 'get')
321321
.mockReturnValue('connected');
322322
mockSession.sessionDescriptionHandler.peerConnection.emit('iceconnectionstatechange', null);
323-
expect(mockOnMediaConnectionStateChange).toBeCalledWith('mediaConnectionStateConnected', mockSession);
324-
expect(mediaConnectionStateConnected).toBeCalled();
323+
expect(mockOnMediaConnectionStateChange).toHaveBeenCalledWith('mediaConnectionStateConnected', mockSession);
324+
expect(mediaConnectionStateConnected).toHaveBeenCalled();
325325

326326
jest
327327
.spyOn(mockSession.sessionDescriptionHandler.peerConnection, 'iceConnectionState', 'get')
328328
.mockReturnValue('completed');
329329
mockSession.sessionDescriptionHandler.peerConnection.emit('iceconnectionstatechange', null);
330-
expect(mockOnMediaConnectionStateChange).toBeCalledWith('mediaConnectionStateCompleted', mockSession);
331-
expect(mediaConnectionStateCompleted).toBeCalled();
330+
expect(mockOnMediaConnectionStateChange).toHaveBeenCalledWith('mediaConnectionStateCompleted', mockSession);
331+
expect(mediaConnectionStateCompleted).toHaveBeenCalled();
332332

333333
jest
334334
.spyOn(mockSession.sessionDescriptionHandler.peerConnection, 'iceConnectionState', 'get')
335335
.mockReturnValue('failed');
336336
mockSession.sessionDescriptionHandler.peerConnection.emit('iceconnectionstatechange', null);
337-
expect(mockOnMediaConnectionStateChange).toBeCalledWith('mediaConnectionStateFailed', mockSession);
338-
expect(mediaConnectionStateFailed).toBeCalled();
337+
expect(mockOnMediaConnectionStateChange).toHaveBeenCalledWith('mediaConnectionStateFailed', mockSession);
338+
expect(mediaConnectionStateFailed).toHaveBeenCalled();
339339

340340
jest
341341
.spyOn(mockSession.sessionDescriptionHandler.peerConnection, 'iceConnectionState', 'get')
342342
.mockReturnValue('disconnected');
343343
mockSession.sessionDescriptionHandler.peerConnection.emit('iceconnectionstatechange', null);
344-
expect(mockOnMediaConnectionStateChange).toBeCalledWith('mediaConnectionStateDisconnected', mockSession);
345-
expect(mediaConnectionStateDisconnected).toBeCalled();
344+
expect(mockOnMediaConnectionStateChange).toHaveBeenCalledWith('mediaConnectionStateDisconnected', mockSession);
345+
expect(mediaConnectionStateDisconnected).toHaveBeenCalled();
346346

347347
jest
348348
.spyOn(mockSession.sessionDescriptionHandler.peerConnection, 'iceConnectionState', 'get')
349349
.mockReturnValue('closed');
350350
mockSession.sessionDescriptionHandler.peerConnection.emit('iceconnectionstatechange', null);
351-
expect(mockOnMediaConnectionStateChange).toBeCalledWith('mediaConnectionStateClosed', mockSession);
352-
expect(mediaConnectionStateClosed).toBeCalled();
351+
expect(mockOnMediaConnectionStateChange).toHaveBeenCalledWith('mediaConnectionStateClosed', mockSession);
352+
expect(mediaConnectionStateClosed).toHaveBeenCalled();
353353
});
354354

355355
test('should not emit event on session and trigger onMediaConnectionStateChange on iceconnectionstatechange for unknown events', () => {
@@ -370,15 +370,15 @@ describe('MediaStreamsImpl', () => {
370370
.spyOn(mockSession.sessionDescriptionHandler.peerConnection, 'iceConnectionState', 'get')
371371
.mockReturnValue('randomEvent');
372372
mockSession.sessionDescriptionHandler.peerConnection.emit('iceconnectionstatechange', null);
373-
expect(mockOnMediaConnectionStateChange).toBeCalledTimes(0);
374-
expect(sessionEventListener).toBeCalledTimes(0);
373+
expect(mockOnMediaConnectionStateChange).toHaveBeenCalledTimes(0);
374+
expect(sessionEventListener).toHaveBeenCalledTimes(0);
375375

376376
jest
377377
.spyOn(mockSession.sessionDescriptionHandler.peerConnection, 'iceConnectionState', 'get')
378378
.mockReturnValue('kylo-ren-event');
379379
mockSession.sessionDescriptionHandler.peerConnection.emit('iceconnectionstatechange', null);
380-
expect(mockOnMediaConnectionStateChange).toBeCalledTimes(0);
381-
expect(sessionEventListener).toBeCalledTimes(0);
380+
expect(mockOnMediaConnectionStateChange).toHaveBeenCalledTimes(0);
381+
expect(sessionEventListener).toHaveBeenCalledTimes(0);
382382
});
383383
});
384384

@@ -394,7 +394,7 @@ describe('MediaStreams', () => {
394394
const mockReinvite = jest.fn().mockReturnValue(Promise.resolve(null));
395395
mockSession.reinvite = mockReinvite;
396396
await mediaStreams.reconnectMedia();
397-
expect(mockReinvite).toBeCalled();
397+
expect(mockReinvite).toHaveBeenCalled();
398398
});
399399

400400
test('should cleanup on release', (done) => {
@@ -424,17 +424,17 @@ describe('MediaStreams', () => {
424424
jest.advanceTimersByTime(400);
425425
// Added promise resolve since fake timer + promise work differently
426426
await Promise.resolve();
427-
expect(getStatsCallback).toBeCalledTimes(4);
428-
expect(rtpStatCallback).toBeCalledTimes(4);
427+
expect(getStatsCallback).toHaveBeenCalledTimes(4);
428+
expect(rtpStatCallback).toHaveBeenCalledTimes(4);
429429
await mediaStreams.release();
430430
getStatsCallback.mockClear();
431431
rtpStatCallback.mockClear();
432432
mediaStreams.getMediaStats(getStatsCallback, 50);
433433
jest.advanceTimersByTime(400);
434434
// Added promise resolve since fake timer + promise work differently
435435
await Promise.resolve();
436-
expect(getStatsCallback).toBeCalledTimes(8);
437-
expect(rtpStatCallback).toBeCalledTimes(8);
436+
expect(getStatsCallback).toHaveBeenCalledTimes(8);
437+
expect(rtpStatCallback).toHaveBeenCalledTimes(8);
438438
mediaStreams.release();
439439
});
440440

@@ -453,7 +453,7 @@ describe('MediaStreams', () => {
453453
jest.advanceTimersByTime(400);
454454
mediaStreams.stopMediaStats();
455455
jest.advanceTimersByTime(400);
456-
expect(getStatsCallback).toBeCalledTimes(4);
456+
expect(getStatsCallback).toHaveBeenCalledTimes(4);
457457
await mediaStreams.release();
458458
});
459459

test/index.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const login = async (
5252

5353
await page.goto(path);
5454
const title = page.locator('h1');
55-
await expect(title).toHaveText('RingCentral WebPhone Demo');
55+
await expect(title).toHaveText('RingCentral WebPhone Demo for SDK 1.x');
5656
await page.screenshot({ path: 'screenshots/before-login.png' });
5757

5858
page.on('websocket', ws);

yarn.lock

Lines changed: 64 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -3134,102 +3134,102 @@
31343134
dependencies:
31353135
"@types/yargs-parser" "*"
31363136

3137-
"@typescript-eslint/eslint-plugin@^8.38.0":
3138-
version "8.38.0"
3139-
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.38.0.tgz#6e5220d16f2691ab6d983c1737dd5b36e17641b7"
3140-
integrity sha512-CPoznzpuAnIOl4nhj4tRr4gIPj5AfKgkiJmGQDaq+fQnRJTYlcBjbX3wbciGmpoPf8DREufuPRe1tNMZnGdanA==
3137+
"@typescript-eslint/eslint-plugin@^8.39.0":
3138+
version "8.39.0"
3139+
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.39.0.tgz#c9afec1866ee1a6ea3d768b5f8e92201efbbba06"
3140+
integrity sha512-bhEz6OZeUR+O/6yx9Jk6ohX6H9JSFTaiY0v9/PuKT3oGK0rn0jNplLmyFUGV+a9gfYnVNwGDwS/UkLIuXNb2Rw==
31413141
dependencies:
31423142
"@eslint-community/regexpp" "^4.10.0"
3143-
"@typescript-eslint/scope-manager" "8.38.0"
3144-
"@typescript-eslint/type-utils" "8.38.0"
3145-
"@typescript-eslint/utils" "8.38.0"
3146-
"@typescript-eslint/visitor-keys" "8.38.0"
3143+
"@typescript-eslint/scope-manager" "8.39.0"
3144+
"@typescript-eslint/type-utils" "8.39.0"
3145+
"@typescript-eslint/utils" "8.39.0"
3146+
"@typescript-eslint/visitor-keys" "8.39.0"
31473147
graphemer "^1.4.0"
31483148
ignore "^7.0.0"
31493149
natural-compare "^1.4.0"
31503150
ts-api-utils "^2.1.0"
31513151

3152-
"@typescript-eslint/parser@^8.38.0":
3153-
version "8.38.0"
3154-
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.38.0.tgz#6723a5ea881e1777956b1045cba30be5ea838293"
3155-
integrity sha512-Zhy8HCvBUEfBECzIl1PKqF4p11+d0aUJS1GeUiuqK9WmOug8YCmC4h4bjyBvMyAMI9sbRczmrYL5lKg/YMbrcQ==
3152+
"@typescript-eslint/parser@^8.39.0":
3153+
version "8.39.0"
3154+
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.39.0.tgz#c4b895d7a47f4cd5ee6ee77ea30e61d58b802008"
3155+
integrity sha512-g3WpVQHngx0aLXn6kfIYCZxM6rRJlWzEkVpqEFLT3SgEDsp9cpCbxxgwnE504q4H+ruSDh/VGS6nqZIDynP+vg==
31563156
dependencies:
3157-
"@typescript-eslint/scope-manager" "8.38.0"
3158-
"@typescript-eslint/types" "8.38.0"
3159-
"@typescript-eslint/typescript-estree" "8.38.0"
3160-
"@typescript-eslint/visitor-keys" "8.38.0"
3157+
"@typescript-eslint/scope-manager" "8.39.0"
3158+
"@typescript-eslint/types" "8.39.0"
3159+
"@typescript-eslint/typescript-estree" "8.39.0"
3160+
"@typescript-eslint/visitor-keys" "8.39.0"
31613161
debug "^4.3.4"
31623162

3163-
"@typescript-eslint/project-service@8.38.0":
3164-
version "8.38.0"
3165-
resolved "https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.38.0.tgz#4900771f943163027fd7d2020a062892056b5e2f"
3166-
integrity sha512-dbK7Jvqcb8c9QfH01YB6pORpqX1mn5gDZc9n63Ak/+jD67oWXn3Gs0M6vddAN+eDXBCS5EmNWzbSxsn9SzFWWg==
3163+
"@typescript-eslint/project-service@8.39.0":
3164+
version "8.39.0"
3165+
resolved "https://registry.yarnpkg.com/@typescript-eslint/project-service/-/project-service-8.39.0.tgz#71cb29c3f8139f99a905b8705127bffc2ae84759"
3166+
integrity sha512-CTzJqaSq30V/Z2Og9jogzZt8lJRR5TKlAdXmWgdu4hgcC9Kww5flQ+xFvMxIBWVNdxJO7OifgdOK4PokMIWPew==
31673167
dependencies:
3168-
"@typescript-eslint/tsconfig-utils" "^8.38.0"
3169-
"@typescript-eslint/types" "^8.38.0"
3168+
"@typescript-eslint/tsconfig-utils" "^8.39.0"
3169+
"@typescript-eslint/types" "^8.39.0"
31703170
debug "^4.3.4"
31713171

3172-
"@typescript-eslint/scope-manager@8.38.0":
3173-
version "8.38.0"
3174-
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.38.0.tgz#5a0efcb5c9cf6e4121b58f87972f567c69529226"
3175-
integrity sha512-WJw3AVlFFcdT9Ri1xs/lg8LwDqgekWXWhH3iAF+1ZM+QPd7oxQ6jvtW/JPwzAScxitILUIFs0/AnQ/UWHzbATQ==
3172+
"@typescript-eslint/scope-manager@8.39.0":
3173+
version "8.39.0"
3174+
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.39.0.tgz#ba4bf6d8257bbc172c298febf16bc22df4856570"
3175+
integrity sha512-8QOzff9UKxOh6npZQ/4FQu4mjdOCGSdO3p44ww0hk8Vu+IGbg0tB/H1LcTARRDzGCC8pDGbh2rissBuuoPgH8A==
31763176
dependencies:
3177-
"@typescript-eslint/types" "8.38.0"
3178-
"@typescript-eslint/visitor-keys" "8.38.0"
3177+
"@typescript-eslint/types" "8.39.0"
3178+
"@typescript-eslint/visitor-keys" "8.39.0"
31793179

3180-
"@typescript-eslint/tsconfig-utils@8.38.0", "@typescript-eslint/tsconfig-utils@^8.38.0":
3181-
version "8.38.0"
3182-
resolved "https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.38.0.tgz#6de4ce224a779601a8df667db56527255c42c4d0"
3183-
integrity sha512-Lum9RtSE3EroKk/bYns+sPOodqb2Fv50XOl/gMviMKNvanETUuUcC9ObRbzrJ4VSd2JalPqgSAavwrPiPvnAiQ==
3180+
"@typescript-eslint/tsconfig-utils@8.39.0", "@typescript-eslint/tsconfig-utils@^8.39.0":
3181+
version "8.39.0"
3182+
resolved "https://registry.yarnpkg.com/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.39.0.tgz#b2e87fef41a3067c570533b722f6af47be213f13"
3183+
integrity sha512-Fd3/QjmFV2sKmvv3Mrj8r6N8CryYiCS8Wdb/6/rgOXAWGcFuc+VkQuG28uk/4kVNVZBQuuDHEDUpo/pQ32zsIQ==
31843184

3185-
"@typescript-eslint/type-utils@8.38.0":
3186-
version "8.38.0"
3187-
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.38.0.tgz#a56cd84765fa6ec135fe252b5db61e304403a85b"
3188-
integrity sha512-c7jAvGEZVf0ao2z+nnz8BUaHZD09Agbh+DY7qvBQqLiz8uJzRgVPj5YvOh8I8uEiH8oIUGIfHzMwUcGVco/SJg==
3185+
"@typescript-eslint/type-utils@8.39.0":
3186+
version "8.39.0"
3187+
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.39.0.tgz#310ec781ae5e7bb0f5940bfd652573587f22786b"
3188+
integrity sha512-6B3z0c1DXVT2vYA9+z9axjtc09rqKUPRmijD5m9iv8iQpHBRYRMBcgxSiKTZKm6FwWw1/cI4v6em35OsKCiN5Q==
31893189
dependencies:
3190-
"@typescript-eslint/types" "8.38.0"
3191-
"@typescript-eslint/typescript-estree" "8.38.0"
3192-
"@typescript-eslint/utils" "8.38.0"
3190+
"@typescript-eslint/types" "8.39.0"
3191+
"@typescript-eslint/typescript-estree" "8.39.0"
3192+
"@typescript-eslint/utils" "8.39.0"
31933193
debug "^4.3.4"
31943194
ts-api-utils "^2.1.0"
31953195

3196-
"@typescript-eslint/types@8.38.0", "@typescript-eslint/types@^8.38.0":
3197-
version "8.38.0"
3198-
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.38.0.tgz#297351c994976b93c82ac0f0e206c8143aa82529"
3199-
integrity sha512-wzkUfX3plUqij4YwWaJyqhiPE5UCRVlFpKn1oCRn2O1bJ592XxWJj8ROQ3JD5MYXLORW84063z3tZTb/cs4Tyw==
3196+
"@typescript-eslint/types@8.39.0", "@typescript-eslint/types@^8.39.0":
3197+
version "8.39.0"
3198+
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.39.0.tgz#80f010b7169d434a91cd0529d70a528dbc9c99c6"
3199+
integrity sha512-ArDdaOllnCj3yn/lzKn9s0pBQYmmyme/v1HbGIGB0GB/knFI3fWMHloC+oYTJW46tVbYnGKTMDK4ah1sC2v0Kg==
32003200

3201-
"@typescript-eslint/typescript-estree@8.38.0":
3202-
version "8.38.0"
3203-
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.38.0.tgz#82262199eb6778bba28a319e25ad05b1158957df"
3204-
integrity sha512-fooELKcAKzxux6fA6pxOflpNS0jc+nOQEEOipXFNjSlBS6fqrJOVY/whSn70SScHrcJ2LDsxWrneFoWYSVfqhQ==
3201+
"@typescript-eslint/typescript-estree@8.39.0":
3202+
version "8.39.0"
3203+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.39.0.tgz#b9477a5c47a0feceffe91adf553ad9a3cd4cb3d6"
3204+
integrity sha512-ndWdiflRMvfIgQRpckQQLiB5qAKQ7w++V4LlCHwp62eym1HLB/kw7D9f2e8ytONls/jt89TEasgvb+VwnRprsw==
32053205
dependencies:
3206-
"@typescript-eslint/project-service" "8.38.0"
3207-
"@typescript-eslint/tsconfig-utils" "8.38.0"
3208-
"@typescript-eslint/types" "8.38.0"
3209-
"@typescript-eslint/visitor-keys" "8.38.0"
3206+
"@typescript-eslint/project-service" "8.39.0"
3207+
"@typescript-eslint/tsconfig-utils" "8.39.0"
3208+
"@typescript-eslint/types" "8.39.0"
3209+
"@typescript-eslint/visitor-keys" "8.39.0"
32103210
debug "^4.3.4"
32113211
fast-glob "^3.3.2"
32123212
is-glob "^4.0.3"
32133213
minimatch "^9.0.4"
32143214
semver "^7.6.0"
32153215
ts-api-utils "^2.1.0"
32163216

3217-
"@typescript-eslint/utils@8.38.0", "@typescript-eslint/utils@^8.0.0":
3218-
version "8.38.0"
3219-
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.38.0.tgz#5f10159899d30eb92ba70e642ca6f754bddbf15a"
3220-
integrity sha512-hHcMA86Hgt+ijJlrD8fX0j1j8w4C92zue/8LOPAFioIno+W0+L7KqE8QZKCcPGc/92Vs9x36w/4MPTJhqXdyvg==
3217+
"@typescript-eslint/utils@8.39.0", "@typescript-eslint/utils@^8.0.0":
3218+
version "8.39.0"
3219+
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.39.0.tgz#dfea42f3c7ec85f9f3e994ff0bba8f3b2f09e220"
3220+
integrity sha512-4GVSvNA0Vx1Ktwvf4sFE+exxJ3QGUorQG1/A5mRfRNZtkBT2xrA/BCO2H0eALx/PnvCS6/vmYwRdDA41EoffkQ==
32213221
dependencies:
32223222
"@eslint-community/eslint-utils" "^4.7.0"
3223-
"@typescript-eslint/scope-manager" "8.38.0"
3224-
"@typescript-eslint/types" "8.38.0"
3225-
"@typescript-eslint/typescript-estree" "8.38.0"
3223+
"@typescript-eslint/scope-manager" "8.39.0"
3224+
"@typescript-eslint/types" "8.39.0"
3225+
"@typescript-eslint/typescript-estree" "8.39.0"
32263226

3227-
"@typescript-eslint/visitor-keys@8.38.0":
3228-
version "8.38.0"
3229-
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.38.0.tgz#a9765a527b082cb8fc60fd8a16e47c7ad5b60ea5"
3230-
integrity sha512-pWrTcoFNWuwHlA9CvlfSsGWs14JxfN1TH25zM5L7o0pRLhsoZkDnTsXfQRJBEWJoV5DL0jf+Z+sxiud+K0mq1g==
3227+
"@typescript-eslint/visitor-keys@8.39.0":
3228+
version "8.39.0"
3229+
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.39.0.tgz#5d619a6e810cdd3fd1913632719cbccab08bf875"
3230+
integrity sha512-ldgiJ+VAhQCfIjeOgu8Kj5nSxds0ktPOSO9p4+0VDH2R2pLvQraaM5Oen2d7NxzMCm+Sn/vJT+mv2H5u6b/3fA==
32313231
dependencies:
3232-
"@typescript-eslint/types" "8.38.0"
3232+
"@typescript-eslint/types" "8.39.0"
32333233
eslint-visitor-keys "^4.2.1"
32343234

32353235
"@ungap/structured-clone@^1.2.0":
@@ -6624,7 +6624,7 @@ picocolors@^1.1.1:
66246624

66256625
picomatch@^2.0.4, picomatch@^2.3.1:
66266626
version "2.3.1"
6627-
resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
6627+
resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
66286628
integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
66296629

66306630
picomatch@^4.0.2:

0 commit comments

Comments
 (0)