Skip to content

Commit 4815d6b

Browse files
Add test id for startup status text (#6882)
## Summary - add `data-testid="startup-status-text"` to the status text in StartupDisplay - keep the status element targetable for Playwright masks ## Why Desktop’s Playwright tests mask the troubleshooting version line; this test id is needed there to keep screenshots stable across releases. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6882-Add-test-id-for-startup-status-text-2b56d73d365081b6a2e4ddca9aa985a4) by [Unito](https://www.unito.io)
1 parent a9653ba commit 4815d6b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

apps/desktop-ui/src/components/common/StartupDisplay.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@
2222
<h1 v-if="title" class="font-inter font-bold text-3xl text-neutral-300">
2323
{{ title }}
2424
</h1>
25-
<p v-if="statusText" class="text-lg text-neutral-400">
25+
<p
26+
v-if="statusText"
27+
class="text-lg text-neutral-400"
28+
data-testid="startup-status-text"
29+
>
2630
{{ statusText }}
2731
</p>
2832
</div>

0 commit comments

Comments
 (0)