Skip to content

Commit

Permalink
test: Social Icons (#54001)
Browse files Browse the repository at this point in the history
* test: Export Social Icons block name

Enable e2e tests for the Social Icons block by reference.

* refactor: Log local Appium server start status

Mitigate confusion regarding the local Appium server status.
  • Loading branch information
dcalhoun authored Aug 29, 2023
1 parent 2653b5e commit 935be24
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,14 @@
*/
const { start } = require( './appium-local.js' );

start( { flags: '--allow-cors' } );
start( { flags: '--allow-cors' } ).then(
() => {
// eslint-disable-next-line no-console
console.log( 'INFO: Appium server started successfully' );
},
( error ) => {
// eslint-disable-next-line no-console
console.error( error );
process.exit( 1 );
}
);
Original file line number Diff line number Diff line change
Expand Up @@ -1024,6 +1024,7 @@ const blockNames = {
paragraph: 'Paragraph',
search: 'Search',
separator: 'Separator',
socialIcons: 'Social Icons',
spacer: 'Spacer',
verse: 'Verse',
shortcode: 'Shortcode',
Expand Down

0 comments on commit 935be24

Please sign in to comment.