import { test } from 'magnitude-test'; test('Application boots and displays login page', async (agent) => { // Act: Navigate to the root URL (should redirect to /login) await agent.act('Navigate to http://localhost:3000'); // Check: Verify the login page loads with expected elements await agent.check('The text "Ponderants" or "Log in with Bluesky" is visible on the screen'); await agent.check('A login form or button is displayed'); });