- Added 'onDelete' and 'onNotes' support to TaskItem. - Implemented hover actions (Delete and Notes icons) for tasks. - Added Notes Modal for editing task markdown content. - Simplified navigation animation to remove blank flash (single-phase slide-in). - Fixed syntax error in updateTask function. - Updated styles for modal and task actions.
7 lines
264 B
TypeScript
7 lines
264 B
TypeScript
import { test, expect } from '@playwright/test';
|
|
|
|
test('basic test', async ({ page }) => {
|
|
// We'll test against a simple placeholder page to verify Playwright works
|
|
await page.goto('https://playwright.dev');
|
|
await expect(page).toHaveTitle(/Playwright/);
|
|
}); |