HEX
Server: LiteSpeed
System: Linux server342.web-hosting.com 4.18.0-553.124.4.lve.el8.x86_64 #1 SMP Fri May 15 13:02:13 UTC 2026 x86_64
User: ksonpoau (1099)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: //proc/self/cwd/wp-content/plugins/extendify/tests/playwright/Assist/tasks/welcome/welcome.spec.ts
import { expect, test } from '../../../fixtures';

test.beforeEach(async ({ requestUtils, admin, page }) => {
	await requestUtils.login();
	await admin.visitAdminPage('admin.php', 'page=extendify-assist');
	await expect(page.getByTestId('assist-tasks-module')).toBeVisible({
		timeout: 15_000,
	});
});

test('Tasks module renders at least one task card on a launch-completed extendable site', async ({
	page,
}) => {
	const cards = page
		.getByTestId('assist-tasks-module')
		.getByTestId('assist-task-card-wrapper');
	expect(await cards.count()).toBeGreaterThan(0);
});

test('"Explore the Design Library" appears in the welcome tasks list', async ({
	page,
}) => {
	await expect(page.getByTestId('assist-tasks-module')).toContainText(
		'Explore the Design Library',
	);
});