Skip to content

Commit

Permalink
fix snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffibm committed Sep 12, 2023
1 parent c1b944d commit aa19d2b
Showing 1 changed file with 55 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ exports[`Order Service Form Component should edit template with a parent and chi
>
<div
aria-atomic="true"
aria-labelledby="loading-id-3"
aria-labelledby="loading-id-4"
aria-live="assertive"
className="export-spinner bx--loading bx--loading--small"
>
<label
className="bx--visually-hidden"
id="loading-id-3"
id="loading-id-4"
>
Active loading indicator
</label>
Expand Down Expand Up @@ -100,13 +100,13 @@ exports[`Order Service Form Component should edit template with no parent and ch
>
<div
aria-atomic="true"
aria-labelledby="loading-id-4"
aria-labelledby="loading-id-5"
aria-live="assertive"
className="export-spinner bx--loading bx--loading--small"
>
<label
className="bx--visually-hidden"
id="loading-id-4"
id="loading-id-5"
>
Active loading indicator
</label>
Expand Down Expand Up @@ -168,13 +168,13 @@ exports[`Order Service Form Component should edit vm with a parent and children
>
<div
aria-atomic="true"
aria-labelledby="loading-id-1"
aria-labelledby="loading-id-2"
aria-live="assertive"
className="export-spinner bx--loading bx--loading--small"
>
<label
className="bx--visually-hidden"
id="loading-id-1"
id="loading-id-2"
>
Active loading indicator
</label>
Expand Down Expand Up @@ -236,13 +236,13 @@ exports[`Order Service Form Component should edit vm with no parent or children
>
<div
aria-atomic="true"
aria-labelledby="loading-id-2"
aria-labelledby="loading-id-3"
aria-live="assertive"
className="export-spinner bx--loading bx--loading--small"
>
<label
className="bx--visually-hidden"
id="loading-id-2"
id="loading-id-3"
>
Active loading indicator
</label>
Expand Down Expand Up @@ -303,6 +303,52 @@ exports[`Order Service Form Component should render order service form 1`] = `
"targetType": "service_template",
}
}
/>
>
<div
className="loadingSpinner"
>
<Loading
active={true}
className="loading"
description="Active loading indicator"
small={true}
withOverlay={false}
>
<div
aria-atomic="true"
aria-labelledby="loading-id-1"
aria-live="assertive"
className="loading bx--loading bx--loading--small"
>
<label
className="bx--visually-hidden"
id="loading-id-1"
>
Active loading indicator
</label>
<svg
className="bx--loading__svg"
viewBox="0 0 100 100"
>
<title>
Active loading indicator
</title>
<circle
className="bx--loading__background"
cx="50%"
cy="50%"
r="44"
/>
<circle
className="bx--loading__stroke"
cx="50%"
cy="50%"
r="44"
/>
</svg>
</div>
</Loading>
</div>
</OrderServiceForm>
</Provider>
`;

0 comments on commit aa19d2b

Please sign in to comment.