Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldambra committed Oct 30, 2023
1 parent 34c0143 commit 520f251
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/__tests__/utils/event-utils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,19 @@ describe(`event-utils`, () => {
expectedBrowser: 'Firefox iOS',
},
{
name: 'Konqueror',
name: 'Konqueror (lowercase)',
userAgent: 'Mozilla/5.0 (X11; U; U; DragonFly amd64) KIO/5.97 konqueror/22.08.0',
vendor: '',
expectedVersion: 22.08,
expectedBrowser: 'Konqueror',
},
{
name: 'Konqueror (uppercase)',
userAgent: 'Mozilla/5.0 (X11; Linux i686) KHTML/5.20 (like Gecko) Konqueror/5.20',
vendor: '',
expectedVersion: 5.2,
expectedBrowser: 'Konqueror',
},
{
name: 'should return 7.1 for BlackBerry Bold 9790 version',
userAgent:
Expand Down

0 comments on commit 520f251

Please sign in to comment.