PluginProbe
Extendify / 3.1.1
Extendify v3.1.1
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
extendify / tests / playwright / smoke.spec.ts

smoke.spec.ts in Extendify 3.1.1, at tests/playwright/smoke.spec.ts

11 lines 319 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { expect, test } from './fixtures';
2
3 test.beforeEach(async ({ requestUtils }) => {
4 await requestUtils.login();
5 });
6
7 test('admin can reach the WP dashboard', async ({ admin, page }) => {
8 await admin.visitAdminPage('index.php');
9 await expect(page.getByRole('heading', { name: 'Dashboard' })).toBeVisible();
10 });
11