Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Impl [QA] Alert entity type data-testid #3012

Merged
merged 19 commits into from
Jan 14, 2025
6 changes: 5 additions & 1 deletion src/utils/createAlertsContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,11 @@ const getEntityTypeData = entityType => {
switch (entityType) {
case MODEL_ENDPOINT_RESULT:
return {
value: <Endpoint />,
value: (
<div data-testid={entityType}>
<Endpoint />
</div>
),
detailsValue: (
<div className="alert-row__details-alert-icon-cell">
<Endpoint /> <span>{upperFirst(ENDPOINT)}</span>
Expand Down
Loading