fix: update tests for dk0 logo and boneyard-js mock, add jest moduleNameMapper

This commit is contained in:
denshooter
2026-04-15 14:37:50 +02:00
parent 87e337a3a0
commit 32abc7f3ef
4 changed files with 11 additions and 7 deletions
+6
View File
@@ -0,0 +1,6 @@
import React from "react";
export function Skeleton({ children, loading }: { children: React.ReactNode; loading: boolean; name?: string; animate?: string; transition?: boolean | number }) {
if (loading) return <div data-testid="boneyard-skeleton">Loading...</div>;
return <>{children}</>;
}