Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skipping more e2e tests #33353

Merged
merged 1 commit into from
Jul 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ describe( 'Inserting blocks', () => {
return page.mouse.click( x, y );
}

it( 'Should insert content using the placeholder and the regular inserter', async () => {
it.skip( 'Should insert content using the placeholder and the regular inserter', async () => {
// This ensures the editor is loaded in navigation mode.
await page.reload();
await page.waitForSelector( '.edit-post-layout' );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ describe( 'Post Editor Template mode', () => {
);
} );

it( 'Allow creating custom block templates in classic themes', async () => {
it.skip( 'Allow creating custom block templates in classic themes', async () => {
await activateTheme( 'twentytwentyone' );
await createNewPost();
// Create a random post.
Expand Down
2 changes: 1 addition & 1 deletion packages/e2e-tests/specs/widgets/editing-widgets.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ describe( 'Widgets screen', () => {
` );
} );

it( 'Should insert content using the inline inserter', async () => {
it.skip( 'Should insert content using the inline inserter', async () => {
const [ firstWidgetArea ] = await findAll( {
role: 'group',
name: 'Block: Widget Area',
Expand Down