Files
AFFiNE-Mirror/tests/blocksuite/e2e/database/title.spec.ts

20 lines
600 B
TypeScript

import { expect } from '@playwright/test';
import {
enterPlaygroundRoom,
initDatabaseDynamicRowWithData,
initEmptyDatabaseState,
} from '../utils/actions/misc.js';
import { test } from '../utils/playwright.js';
import { press } from './actions.js';
test.describe('title', () => {
test('should able to link doc by press @', async ({ page }) => {
await enterPlaygroundRoom(page);
await initEmptyDatabaseState(page);
await initDatabaseDynamicRowWithData(page, '123', true);
await press(page, '@');
await expect(page.locator('.linked-doc-popover')).toBeVisible();
});
});