@@ -3103,6 +3103,7 @@ describe('iframe using HTML fullscreen API while window is OS-fullscreened', ()
3103
3103
"document.querySelector('iframe').offsetWidth"
3104
3104
) ;
3105
3105
expect ( width ) . to . equal ( 0 ) ;
3106
+ console . log ( 'HEY done with fullscreen iframe test' ) ;
3106
3107
} ) ;
3107
3108
} ) ;
3108
3109
@@ -3130,6 +3131,7 @@ ifdescribe(process.platform !== 'darwin' || process.arch !== 'arm64')('navigator
3130
3131
} ) ;
3131
3132
3132
3133
it ( 'does not return a port if select-serial-port event is not defined' , async ( ) => {
3134
+ console . log ( 'HEY RUNNING FIRST navigator.serial test' ) ;
3133
3135
w . loadFile ( path . join ( fixturesPath , 'pages' , 'blank.html' ) ) ;
3134
3136
const port = await getPorts ( ) ;
3135
3137
expect ( port ) . to . equal ( notFoundError ) ;
@@ -3252,6 +3254,7 @@ describe('window.getScreenDetails', () => {
3252
3254
} ;
3253
3255
3254
3256
it ( 'returns screens when a PermissionRequestHandler is not defined' , async ( ) => {
3257
+ console . log ( 'HEY RUNNING FIRST window.getScreenDetails' ) ;
3255
3258
const screens = await getScreenDetails ( ) ;
3256
3259
expect ( screens ) . to . not . equal ( 'Read permission denied.' ) ;
3257
3260
} ) ;
@@ -3638,7 +3641,7 @@ ifdescribe((process.platform !== 'linux' || app.isUnityRunning()))('navigator.se
3638
3641
} ) ;
3639
3642
} ) ;
3640
3643
3641
- ifdescribe ( process . platform !== 'darwin' || process . arch !== 'arm64' ) ( 'navigator.bluetooth' , ( ) => {
3644
+ describe ( 'navigator.bluetooth' , ( ) => {
3642
3645
let w : BrowserWindow ;
3643
3646
before ( async ( ) => {
3644
3647
w = new BrowserWindow ( {
@@ -3692,7 +3695,6 @@ describe('navigator.hid', () => {
3692
3695
} ) ;
3693
3696
3694
3697
it ( 'does not return a device if select-hid-device event is not defined' , async ( ) => {
3695
- console . log ( 'HEY IN navigator.hid FIRST TEST' ) ;
3696
3698
w . loadFile ( path . join ( fixturesPath , 'pages' , 'blank.html' ) ) ;
3697
3699
const device = await requestDevices ( ) ;
3698
3700
expect ( device ) . to . equal ( '' ) ;
0 commit comments