all: fix formatting
diff --git a/webui/src/web-components/sketch-network-status.test.ts b/webui/src/web-components/sketch-network-status.test.ts
index 6930910..b15fbfd 100644
--- a/webui/src/web-components/sketch-network-status.test.ts
+++ b/webui/src/web-components/sketch-network-status.test.ts
@@ -11,11 +11,16 @@
});
// The status container should exist but be hidden with display: none
- await expect(component.locator(".status-container")).toHaveCSS("display", "none");
+ await expect(component.locator(".status-container")).toHaveCSS(
+ "display",
+ "none",
+ );
});
// Test that the network status component remains invisible regardless of connection state
-test("network status component is not visible when disconnected", async ({ mount }) => {
+test("network status component is not visible when disconnected", async ({
+ mount,
+}) => {
const component = await mount(SketchNetworkStatus, {
props: {
connection: "disconnected",
@@ -24,5 +29,8 @@
});
// The status container should exist but be hidden with display: none
- await expect(component.locator(".status-container")).toHaveCSS("display", "none");
+ await expect(component.locator(".status-container")).toHaveCSS(
+ "display",
+ "none",
+ );
});