Skip to content

Commit

Permalink
replace testid by data-cy
Browse files Browse the repository at this point in the history
  • Loading branch information
dvchristianbors committed Dec 5, 2023
1 parent 6ff1115 commit 4badb73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/visyn/proxy/ProxyViewComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export function ProxyViewComponent({ site }: IProxyViewProps) {

return (
<div className={`w-100 h-100 ${websiteLoading ? 'tdp-busy' : ''}`}>
<iframe ref={loadingFrame} className="w-100 h-100" src={site} data-testid={`proxy-view-iframe`} />
<iframe ref={loadingFrame} className="w-100 h-100" src={site} data-cy={`proxy-view-iframe`} />
</div>
);
}

0 comments on commit 4badb73

Please sign in to comment.