Implement initial project structure and features for Automaker application, including environment setup, auto mode services, and session management. Update port configurations to 3007 and add new UI components for enhanced user interaction.

This commit is contained in:
Cody Seibert
2025-12-08 21:11:00 -05:00
parent 3c8e786f29
commit 9392422d35
67 changed files with 16275 additions and 696 deletions

View File

@@ -115,7 +115,7 @@ npx playwright test tests/[feature-name].spec.ts --headed
import { test, expect } from "@playwright/test";
test("user can send a message and receive response", async ({ page }) => {
await page.goto("http://localhost:3000");
await page.goto("http://localhost:3007");
// Happy path: main user flow
await page.fill('[data-testid="message-input"]', "Hello world");
@@ -231,7 +231,7 @@ import { test, expect } from "@playwright/test";
test.describe("Feature Name", () => {
test("happy path: user completes main workflow", async ({ page }) => {
await page.goto("http://localhost:3000");
await page.goto("http://localhost:3007");
// Interact with UI elements
await page.click('button[data-testid="action"]');