File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/auth/src/core/util Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -102,13 +102,13 @@ describe('core/util/browser', () => {
102
102
context ( '_isIOS' , ( ) => {
103
103
it ( 'should recognize iPhone' , ( ) => {
104
104
const userAgent =
105
- 'Mozilla/5.0 (iPhone; CPU iPhone OS 15_0 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Mobile/1234'
105
+ 'Mozilla/5.0 (iPhone; CPU iPhone OS 15_0 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Mobile/1234' ;
106
106
expect ( _isIOS ( userAgent ) ) . to . be . true ;
107
107
} ) ;
108
108
109
109
it ( 'should recognize iPad without iPad string' , ( ) => {
110
110
const userAgent =
111
- 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_0) AppleWebKit/600.1.4 (KHTML, like Gecko) Mobile/1234'
111
+ 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_0) AppleWebKit/600.1.4 (KHTML, like Gecko) Mobile/1234' ;
112
112
expect ( _isIOS ( userAgent ) ) . to . be . true ;
113
113
} ) ;
114
114
You can’t perform that action at this time.
0 commit comments