Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ describe('OnboardingInternalBootStep', () => {
await flushPromises();

expect(wrapper.find('[data-testid="internal-boot-eligibility-panel"]').exists()).toBe(true);
expect(wrapper.find('[data-testid="internal-boot-intro-panel"]').exists()).toBe(true);
expect(wrapper.find('[data-testid="internal-boot-intro-panel"]').exists()).toBe(false);
expect(wrapper.text()).not.toContain('No eligible devices were detected for internal boot setup.');
await wrapper.get('[data-testid="internal-boot-eligibility-toggle"]').trigger('click');
await flushPromises();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,7 @@ const primaryButtonText = computed(() => t('onboarding.internalBootStep.actions.
/>

<UAlert
v-if="isStorageBootSelected && hasEligibleDevices && isDedicatedMode"
v-if="isStorageBootSelected && canConfigure && isDedicatedMode"
data-testid="internal-boot-intro-panel"
class="my-8"
color="neutral"
Expand All @@ -822,7 +822,7 @@ const primaryButtonText = computed(() => t('onboarding.internalBootStep.actions.
</UAlert>

<UAlert
v-if="isStorageBootSelected && hasEligibleDevices && !isDedicatedMode"
v-if="isStorageBootSelected && canConfigure && !isDedicatedMode"
data-testid="internal-boot-intro-panel"
class="my-8"
color="neutral"
Expand Down
Loading