Skip to content

Commit

Permalink
feat(ui): add data-testid prop to Loader
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashu96 authored and adrians5j committed Oct 18, 2021
1 parent 634220d commit 0a284db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/src/List/DataList/Loader.tsx
Expand Up @@ -36,7 +36,7 @@ const LoaderUl = styled("ul")({
});

const Loader = () => (
<LoaderUl>
<LoaderUl data-testid={"default-data-list.loading"}>
{[1, 2, 3, 4, 5].map(item => (
<li key={"list-" + item}>
<div className="graphic">
Expand Down

0 comments on commit 0a284db

Please sign in to comment.