all: fix formatting
diff --git a/webui/src/web-components/sketch-call-status.test.ts b/webui/src/web-components/sketch-call-status.test.ts
index 7dc16a5..c8a0c28 100644
--- a/webui/src/web-components/sketch-call-status.test.ts
+++ b/webui/src/web-components/sketch-call-status.test.ts
@@ -137,7 +137,9 @@
);
});
-test("displays IDLE status when isIdle is true and not disconnected", async ({ mount }) => {
+test("displays IDLE status when isIdle is true and not disconnected", async ({
+ mount,
+}) => {
const component = await mount(SketchCallStatus, {
props: {
isIdle: true,
@@ -152,7 +154,9 @@
await expect(component.locator(".status-banner")).toHaveText("IDLE");
});
-test("displays WORKING status when isIdle is false and not disconnected", async ({ mount }) => {
+test("displays WORKING status when isIdle is false and not disconnected", async ({
+ mount,
+}) => {
const component = await mount(SketchCallStatus, {
props: {
isIdle: false,
@@ -163,11 +167,15 @@
});
// Check that the status banner has the correct class and text
- await expect(component.locator(".status-banner")).toHaveClass(/status-working/);
+ await expect(component.locator(".status-banner")).toHaveClass(
+ /status-working/,
+ );
await expect(component.locator(".status-banner")).toHaveText("WORKING");
});
-test("displays DISCONNECTED status when isDisconnected is true regardless of isIdle", async ({ mount }) => {
+test("displays DISCONNECTED status when isDisconnected is true regardless of isIdle", async ({
+ mount,
+}) => {
const component = await mount(SketchCallStatus, {
props: {
isIdle: true, // Even when idle
@@ -178,6 +186,8 @@
});
// Check that the status banner has the correct class and text
- await expect(component.locator(".status-banner")).toHaveClass(/status-disconnected/);
+ await expect(component.locator(".status-banner")).toHaveClass(
+ /status-disconnected/,
+ );
await expect(component.locator(".status-banner")).toHaveText("DISCONNECTED");
});