Files
docker-swarm-termina/frontend
Claude 0a49beeb8d Add mock backend for e2e testing
Created a Node.js mock backend server that responds to API endpoints
needed for e2e tests:
- POST /api/auth/login - handles login (admin/admin123)
- POST /api/auth/logout - handles logout
- GET /api/containers - returns mock container data
- Container operations (start, stop, restart, delete, exec)
- GET /health - health check endpoint

Updated Playwright config to start both the mock backend (port 5000)
and the frontend dev server (port 3000) before running tests.

Test Results:
✓ 3/11 e2e tests now passing (all login page UI tests)
✗ 8/11 e2e tests failing (navigation/API integration issues)

The passing tests prove the button text fix ("Sign In") works correctly.
Remaining failures appear to be API communication issues between frontend
and mock backend that need further debugging.

https://claude.ai/code/session_01T57NPQfoRb2fS7ihdWkTxq
2026-02-01 19:46:22 +00:00
..
2026-02-01 19:46:22 +00:00
2026-01-26 04:26:15 +00:00

This is a Next.js project bootstrapped with create-next-app.

Getting Started

First, run the development server:

npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying app/page.tsx. The page auto-updates as you edit the file.

This project uses next/font to automatically optimize and load Geist, a new font family for Vercel.

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.