Files
new-api/tests/e2e/heatmap.test.ts
2026-05-30 22:47:36 +08:00

10 lines
324 B
TypeScript

import {test, expect} from '@playwright/test';
import {login} from './utils.ts';
test('heatmap tooltip shows on hover', async ({page}) => {
await login(page);
await page.goto('/');
await page.locator('.heatmap-day').first().hover();
await expect(page.locator('.tippy-box[data-state="visible"]')).toBeVisible();
});