Skip to content

Commit 9aa7727

Browse files
ochafikclaude
andcommitted
Fix prettier formatting
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 95aa92f commit 9aa7727

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

playwright.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ export default defineConfig({
88
workers: 1, // Single worker since we share the server
99
reporter: "html",
1010
// Use platform-agnostic snapshot names (no -darwin/-linux suffix)
11-
snapshotPathTemplate: "{testDir}/{testFileDir}/{testFileName}-snapshots/{arg}{ext}",
11+
snapshotPathTemplate:
12+
"{testDir}/{testFileDir}/{testFileName}-snapshots/{arg}{ext}",
1213
use: {
1314
baseURL: "http://localhost:8080",
1415
trace: "on-first-retry",

tests/e2e/servers.spec.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,18 @@ import { test, expect, type Page } from "@playwright/test";
33
// Server configurations
44
const SERVERS = [
55
{ key: "basic-react", index: 0, name: "Basic MCP App Server (React-based)" },
6-
{ key: "basic-vanillajs", index: 1, name: "Basic MCP App Server (Vanilla JS)" },
6+
{
7+
key: "basic-vanillajs",
8+
index: 1,
9+
name: "Basic MCP App Server (Vanilla JS)",
10+
},
711
{ key: "budget-allocator", index: 2, name: "Budget Allocator Server" },
812
{ key: "cohort-heatmap", index: 3, name: "Cohort Heatmap Server" },
9-
{ key: "customer-segmentation", index: 4, name: "Customer Segmentation Server" },
13+
{
14+
key: "customer-segmentation",
15+
index: 4,
16+
name: "Customer Segmentation Server",
17+
},
1018
{ key: "scenario-modeler", index: 5, name: "SaaS Scenario Modeler" },
1119
{ key: "system-monitor", index: 6, name: "System Monitor Server" },
1220
{ key: "threejs", index: 7, name: "Three.js Server" },

0 commit comments

Comments
 (0)