Prettier.
diff --git a/loop/webui/src/web-components/sketch-chat-input.test.ts b/loop/webui/src/web-components/sketch-chat-input.test.ts
index 6dd946a..efb303f 100644
--- a/loop/webui/src/web-components/sketch-chat-input.test.ts
+++ b/loop/webui/src/web-components/sketch-chat-input.test.ts
@@ -56,7 +56,7 @@
(event) => {
resolve((event as CustomEvent).detail);
},
- { once: true }
+ { once: true },
);
});
});
@@ -87,7 +87,7 @@
(event) => {
resolve((event as CustomEvent).detail);
},
- { once: true }
+ { once: true },
);
});
});
@@ -144,7 +144,7 @@
},
});
const origHeight = await component.evaluate(
- (el: SketchChatInput) => el.chatInput.style.height
+ (el: SketchChatInput) => el.chatInput.style.height,
);
// Enter very tall text in the textarea
@@ -155,9 +155,9 @@
// Check that textarea resized
const newHeight = await component.evaluate(
- (el: SketchChatInput) => el.chatInput.style.height
+ (el: SketchChatInput) => el.chatInput.style.height,
);
expect(Number.parseInt(newHeight)).toBeGreaterThan(
- Number.parseInt(origHeight)
+ Number.parseInt(origHeight),
);
});