# extendify/3.1.1/tests/playwright/Assist/basic.spec.ts

Extendify, version 3.1.1. 16 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.1.1/code/tests/playwright/Assist/basic.spec.ts
- Raw: https://pluginprobe.com/plugins/extendify/3.1.1/raw/tests/playwright/Assist/basic.spec.ts
- Modified: 2026-06-11T18:37:12+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/3.1.1/code/tests/playwright/Assist/basic.spec.ts#L10-L20`.

```typescript
import { expect, test } from '../fixtures';

test.beforeEach(async ({ requestUtils }) => {
	await requestUtils.login();
});

test('Assist dashboard is reachable when Launch is disabled', async ({
	admin,
	page,
}) => {
	await admin.visitAdminPage('admin.php', 'page=extendify-assist');
	await expect(page.getByTestId('assist-landing')).toBeVisible({
		timeout: 15_000,
	});
});

```
