@linktr.ee/messaging-react 3.4.2-rc-1782453401 → 3.4.2-rc-1782453771

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linktr.ee/messaging-react",
3
- "version": "3.4.2-rc-1782453401",
3
+ "version": "3.4.2-rc-1782453771",
4
4
  "description": "React messaging components built on messaging-core for web applications",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -38,7 +38,7 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "@linktr.ee/component-library": "11.8.6",
41
- "@linktr.ee/messaging-core": "2.3.0-rc-1782453401",
41
+ "@linktr.ee/messaging-core": "2.3.0-rc-1782453771",
42
42
  "@phosphor-icons/react": "^2.1.10"
43
43
  },
44
44
  "devDependencies": {
@@ -289,7 +289,7 @@ describe('CustomChannelPreview', () => {
289
289
  )
290
290
 
291
291
  expect(
292
- screen.queryByRole('heading', { name: /starred conversation/i })
292
+ screen.queryByRole('img', { name: 'Starred conversation' })
293
293
  ).not.toBeInTheDocument()
294
294
 
295
295
  act(() => {
@@ -300,7 +300,7 @@ describe('CustomChannelPreview', () => {
300
300
  })
301
301
 
302
302
  expect(
303
- screen.getByRole('heading', { name: /starred conversation/i })
303
+ screen.getByRole('img', { name: 'Starred conversation' })
304
304
  ).toBeInTheDocument()
305
305
  })
306
306
 
@@ -319,7 +319,7 @@ describe('CustomChannelPreview', () => {
319
319
  })
320
320
 
321
321
  expect(
322
- screen.queryByRole('heading', { name: /starred conversation/i })
322
+ screen.queryByRole('img', { name: 'Starred conversation' })
323
323
  ).not.toBeInTheDocument()
324
324
  })
325
325
  })