SymphonyElectron/spec/__snapshots__/loadingScreen.spec.ts.snap
2019-04-02 10:57:27 +05:30

51 lines
1.1 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`loading screen should render correctly 1`] = `
<div
className="LoadingScreen"
>
<img
className="LoadingScreen-logo"
src="../renderer/assets/symphony-logo.png"
/>
<span
className="LoadingScreen-name"
>
Symphony
</span>
<svg
height="100%"
preserveAspectRatio="xMidYMid"
viewBox="0 0 100 200"
width="100%"
xmlns="http://www.w3.org/2000/svg"
>
<circle
cx="50"
cy="50"
fill="none"
ng-attr-r="{{config.radius}}"
ng-attr-stroke="{{config.color}}"
ng-attr-stroke-dasharray="{{config.dasharray}}"
ng-attr-stroke-width="{{config.width}}"
r="35"
stroke="#ffffff"
stroke-dasharray="164.93361431346415 56.97787143782138"
stroke-width="10"
transform="rotate(59.6808 50 50)"
>
<animateTransform
attributeName="transform"
begin="0s"
calcMode="linear"
dur="1s"
keyTimes="0;1"
repeatCount="indefinite"
type="rotate"
values="0 50 50;360 50 50"
/>
</circle>
</svg>
</div>
`;