Skip to content

Commit 99d87b1

Browse files
committed
add data-cy to the statusbar
1 parent ec89bf0 commit 99d87b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/StatusBar/StatusBar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const StatusBar = ({ backgroundColor, statusArray, apiRequestStatus, addClass })
1616

1717
return (
1818
<div className={`container ${addClass}`}>
19-
<div className='row border'>
19+
<div className='row border' data-cy='status-bar'>
2020
{statusArray.map((statusObject, index) => {
2121
const { statusLabel, statusIcon } = statusObject
2222
const border = index !== statusArray.length - 1 ? 'border-end' : ''

0 commit comments

Comments
 (0)