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'); });