AFFiNE/tests/shortcuts.spec.ts

23 lines
810 B
TypeScript
Raw Normal View History

2023-02-05 13:41:18 +03:00
import { expect } from '@playwright/test';
import { test } from './libs/playwright.js';
2023-01-09 07:20:53 +03:00
import { loadPage } from './libs/load-page.js';
2022-11-28 16:17:34 +03:00
loadPage();
test.describe('Shortcuts Modal', () => {
2022-11-28 16:17:34 +03:00
test('Open shortcuts modal', async ({ page }) => {
const faqIcon = page.locator('[data-testid=faq-icon]');
const box = await faqIcon.boundingBox();
expect(box?.x).not.toBeUndefined();
2022-11-28 16:17:34 +03:00
await page.mouse.move((box?.x ?? 0) + 5, (box?.y ?? 0) + 5);
const shortcutsIcon = page.locator('[data-testid=shortcuts-icon]');
expect(await shortcutsIcon.isVisible()).toEqual(true);
2022-11-28 16:17:34 +03:00
await shortcutsIcon.click();
await page.waitForTimeout(800);
2022-11-28 16:17:34 +03:00
const shortcutsModal = page.locator('[data-testid=shortcuts-modal]');
await expect(shortcutsModal).toContainText('Keyboard Shortcuts');
});
});