- 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.
10 lines
520 B
TypeScript
10 lines
520 B
TypeScript
import { test } from '@playwright/test';
|
|
|
|
// Simple test to verify Playwright can access the application at port 9323
|
|
test('Playwright can access port 9323', async ({ page }) => {
|
|
// This test mainly verifies that Playwright can connect to a server
|
|
// We'll just check that we get a response rather than focusing on content
|
|
await page.goto('http://localhost:9323');
|
|
// If we reach here without error, then Playwright successfully connected
|
|
console.log('Successfully connected to application at port 9323');
|
|
}); |