mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
As per the migration plan shared last year, this migrates all browser-based tests in WordPress core to use Playwright. This includes end-to-end, performance, and visual regression tests. Props swissspidy, mamaduka, kevin940726, bartkalisz, desrosj, adamsilverstein. Fixes #59517. git-svn-id: https://develop.svn.wordpress.org/trunk@56926 602fd350-edb4-49c9-b593-d223f7449a82
14 lines
359 B
JavaScript
14 lines
359 B
JavaScript
/**
|
|
* WordPress dependencies
|
|
*/
|
|
import { test, expect } from '@wordpress/e2e-test-utils-playwright';
|
|
|
|
test.describe( 'Hello World', () => {
|
|
test( 'Should load properly', async ( { admin, page }) => {
|
|
await admin.visitAdminPage( '/' );
|
|
await expect(
|
|
page.getByRole('heading', { name: 'Welcome to WordPress', level: 2 })
|
|
).toBeVisible();
|
|
} );
|
|
} );
|