src: Remove unused data-testids
This removes unused `data-testid`s from the code base.
This commit is contained in:
parent
2ec85661c4
commit
aedbbdc53a
24 changed files with 76 additions and 143 deletions
|
|
@ -575,7 +575,7 @@ const Repositories = () => {
|
|||
refetch={refresh}
|
||||
/>
|
||||
) : (
|
||||
<Table variant="compact" data-testid="repositories-table">
|
||||
<Table variant="compact">
|
||||
<Thead>
|
||||
<Tr>
|
||||
<Th aria-label="Selected" />
|
||||
|
|
@ -607,10 +607,7 @@ const Repositories = () => {
|
|||
);
|
||||
|
||||
return (
|
||||
<Tr
|
||||
key={`${uuid}-${rowIndex}`}
|
||||
data-testid="repositories-row"
|
||||
>
|
||||
<Tr key={`${uuid}-${rowIndex}`}>
|
||||
<Td
|
||||
select={{
|
||||
isSelected: selected.has(uuid),
|
||||
|
|
@ -704,7 +701,7 @@ const Repositories = () => {
|
|||
<Grid>
|
||||
<Panel>
|
||||
<PanelMain>
|
||||
<Table variant="compact" data-testid="repositories-table">
|
||||
<Table variant="compact">
|
||||
<Thead>
|
||||
<Tr>
|
||||
<Th aria-label="Selected" />
|
||||
|
|
@ -731,10 +728,7 @@ const Repositories = () => {
|
|||
} = repo;
|
||||
|
||||
return (
|
||||
<Tr
|
||||
key={`${uuid}-${rowIndex}`}
|
||||
data-testid="repositories-row"
|
||||
>
|
||||
<Tr key={`${uuid}-${rowIndex}`}>
|
||||
<Td
|
||||
select={{
|
||||
isSelected: true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue