import { test } from 'magnitude-test'; test('Application boots and displays homepage', async (agent) => { // Act: Navigate to the homepage (uses the default URL // from magnitude.config.ts) await agent.act('Navigate to the homepage'); // Check: Verify that the homepage text is visible // This confirms the Next.js app is serving content. await agent.check('The text "Ponderants" is visible on the screen'); });