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

Migrate block api test to Playwright #40217

Merged
merged 4 commits into from
Apr 11, 2022
Merged
Changes from 1 commit
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
25 changes: 25 additions & 0 deletions test/e2e/specs/editor/plugins/block-api.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/**
* WordPress dependencies
*/
const { test, expect } = require( '@wordpress/e2e-test-utils-playwright' );

test.describe( 'Using Block API', () => {
test( 'Inserts the filtered hello world block even when filter added after block registration', async ( {
page,
pageUtils,
requestUtils,
} ) => {
await requestUtils.activatePlugin( 'gutenberg-test-block-api' );
JustinyAhin marked this conversation as resolved.
Show resolved Hide resolved
await pageUtils.createNewPost();

await pageUtils.insertBlock( { name: 'e2e-tests/hello-world' } );

const blockContent = await page.textContent(
'div[data-type="e2e-tests/hello-world"]'
);

expect( blockContent ).toBe( 'Hello Editor!' );
JustinyAhin marked this conversation as resolved.
Show resolved Hide resolved

await requestUtils.deactivatePlugin( 'gutenberg-test-block-api' );
JustinyAhin marked this conversation as resolved.
Show resolved Hide resolved
} );
} );