@@ -49,10 +49,10 @@ test.describe('FIDO/WebAuthn Tests', () => {
4949 await page . getByRole ( 'button' , { name : 'Sign On' } ) . click ( ) ;
5050
5151 // Register WebAuthn credential
52- const { credentials : intialCredentials } = await cdp . send ( 'WebAuthn.getCredentials' , {
52+ const { credentials : initialCredentials } = await cdp . send ( 'WebAuthn.getCredentials' , {
5353 authenticatorId,
5454 } ) ;
55- await expect ( intialCredentials ) . toHaveLength ( 0 ) ;
55+ await expect ( initialCredentials ) . toHaveLength ( 0 ) ;
5656
5757 await page . getByRole ( 'button' , { name : 'DEVICE_REGISTRATION' } ) . click ( ) ;
5858 await page . getByRole ( 'button' , { name : 'Biometrics/Security Key' } ) . click ( ) ;
@@ -87,7 +87,9 @@ test.describe('FIDO/WebAuthn Tests', () => {
8787 await expect ( page . getByText ( 'FIDO2 Test Form' ) ) . toBeVisible ( ) ;
8888 } ) ;
8989
90- test ( 'Register and authenticate with usernameless' , async ( { page } ) => {
90+ // Note: This test is currently not working due to a DaVinci issue where the authentication options
91+ // are not included in the response.
92+ test . skip ( 'Register and authenticate with usernameless' , async ( { page } ) => {
9193 const { navigate } = asyncEvents ( page ) ;
9294
9395 await navigate (
@@ -104,10 +106,10 @@ test.describe('FIDO/WebAuthn Tests', () => {
104106 await page . getByRole ( 'button' , { name : 'Sign On' } ) . click ( ) ;
105107
106108 // Register WebAuthn credential
107- const { credentials : intialCredentials } = await cdp . send ( 'WebAuthn.getCredentials' , {
109+ const { credentials : initialCredentials } = await cdp . send ( 'WebAuthn.getCredentials' , {
108110 authenticatorId,
109111 } ) ;
110- await expect ( intialCredentials ) . toHaveLength ( 0 ) ;
112+ await expect ( initialCredentials ) . toHaveLength ( 0 ) ;
111113
112114 await page . getByRole ( 'button' , { name : 'DEVICE_REGISTRATION' } ) . click ( ) ;
113115 await page . getByRole ( 'button' , { name : 'Biometrics/Security Key' } ) . click ( ) ;
0 commit comments