From c333fcec32b1f90bf0da6bb14d2609c20e38a74f Mon Sep 17 00:00:00 2001 From: Adam Malczewski Date: Fri, 26 Jun 2026 22:21:55 +0900 Subject: style: switch from tabs to 2-space indentation (incl. svelte) --- vitest-setup.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'vitest-setup.ts') diff --git a/vitest-setup.ts b/vitest-setup.ts index 10a3160..143ac96 100644 --- a/vitest-setup.ts +++ b/vitest-setup.ts @@ -5,12 +5,12 @@ import "fake-indexeddb/auto"; // controller uses both against the real transcript element when App mounts. Stub // the outermost edges so component tests can render without throwing. if (typeof Element !== "undefined" && typeof Element.prototype.scrollTo !== "function") { - Element.prototype.scrollTo = () => {}; + Element.prototype.scrollTo = () => {}; } if (typeof globalThis.ResizeObserver === "undefined") { - globalThis.ResizeObserver = class { - observe(): void {} - unobserve(): void {} - disconnect(): void {} - }; + globalThis.ResizeObserver = class { + observe(): void {} + unobserve(): void {} + disconnect(): void {} + }; } -- cgit v1.2.3