all: fix formatting
diff --git a/webui/src/web-components/sketch-container-status.test.ts b/webui/src/web-components/sketch-container-status.test.ts
index ded2917..0e93604 100644
--- a/webui/src/web-components/sketch-container-status.test.ts
+++ b/webui/src/web-components/sketch-container-status.test.ts
@@ -42,10 +42,10 @@
await expect(component.locator("#workingDir")).toContainText(
mockCompleteState.working_dir,
);
-
+
// Show details to access the popup elements
component.locator(".info-toggle").click();
-
+
await expect(component.locator("#initialCommit")).toContainText(
mockCompleteState.initial_commit.substring(0, 8),
);
@@ -68,8 +68,6 @@
);
});
-
-
test("renders with partial state data", async ({ mount }) => {
const partialState: Partial<State> = {
state_version: 2,
@@ -99,7 +97,7 @@
// Check that elements with data are properly populated
await expect(component.locator("#hostname")).toContainText("partial-host");
-
+
// Show details to access the popup elements
component.locator(".info-toggle").click();
await expect(component.locator("#messageCount")).toContainText("10");
@@ -119,5 +117,3 @@
// totalCost element should not exist when cost is 0
await expect(component.locator("#totalCost")).toHaveCount(0);
});
-
-