2019-06-27 13:26:58 +02:00
|
|
|
import { visitAdminPage } from '@wordpress/e2e-test-utils';
|
|
|
|
|
|
|
|
describe( 'Hello World', () => {
|
|
|
|
it( 'Should load properly', async () => {
|
|
|
|
await visitAdminPage( '/' );
|
2019-06-28 13:33:13 +02:00
|
|
|
const nodes = await page.$x(
|
2019-06-27 13:26:58 +02:00
|
|
|
'//h2[contains(text(), "Welcome to WordPress!")]'
|
|
|
|
);
|
2019-06-28 13:33:13 +02:00
|
|
|
expect( nodes.length ).not.toEqual( 0 );
|
2019-06-27 13:26:58 +02:00
|
|
|
} );
|
|
|
|
} );
|