Adjust spacing on comments

This commit is contained in:
Greg 2021-08-06 09:37:21 -06:00
parent f3447f713d
commit 7bbb820379
1 changed files with 6 additions and 6 deletions

View File

@ -375,9 +375,9 @@ const merchant = {
await page.waitForResponse( response => response.status() === 200 );
},
/**
* Runs the database update if needed. For example, after uploading the WooCommerce plugin or updating WooCommerce.
*/
/**
* Runs the database update if needed. For example, after uploading the WooCommerce plugin or updating WooCommerce.
*/
runDatabaseUpdate: async () => {
if ( await page.$( '.updated.woocommerce-message.wc-connect' ) !== null ) {
await expect( page ).toMatchElement( 'a.wc-update-now', { text: 'Update WooCommerce Database' } );
@ -387,9 +387,9 @@ const merchant = {
}
},
/**
* Checks if the database update is complete, if not, refresh the page until it is.
*/
/**
* Checks if the database update is complete, if not, refresh the page until it is.
*/
checkDatabaseUpdateComplete: async () => {
await page.reload( { waitUntil: [ 'networkidle0', 'domcontentloaded'] } );