-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Timur Karimov
authored and
Timur Karimov
committed
Nov 29, 2024
1 parent
327ab01
commit 73da308
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -610,7 +610,7 @@ describe( 'blocksShowLinkButtonHandler', () => { | |
|
||
container = document.createElement( 'div' ); | ||
container.innerHTML = ` | ||
<input id="email" type="email" value=""> | ||
<input id="billing_email" type="email" value=""> | ||
<label for="email">Email address</label> | ||
`; | ||
form.appendChild( container ); | ||
|
@@ -649,7 +649,7 @@ describe( 'blocksShowLinkButtonHandler', () => { | |
} ); | ||
|
||
test( 'should show link button if email input is present', () => { | ||
document.getElementById( 'email' ).value = '[email protected]'; | ||
document.getElementById( 'billing_email' ).value = '[email protected]'; | ||
|
||
blocksShowLinkButtonHandler( autofill ); | ||
|
||
|