test: Update Edit wizard test

The content steps were surfaced from previously used Content section and we're now testing with all flags set to true. Updating the list of step nav items that should be enabled.
This commit is contained in:
regexowl 2024-09-12 11:13:11 +02:00 committed by Klara Simickova
parent c2f07b7585
commit 3c1f8347eb

View file

@ -11,6 +11,7 @@ describe('EditImageWizard', () => {
beforeEach(() => {
vi.clearAllMocks();
});
test('should enable all navigation items in edit mode', async () => {
const id = mockBlueprintIds['darkChocolate'];
const name = mockBlueprintNames['darkChocolate'];
@ -35,6 +36,21 @@ describe('EditImageWizard', () => {
const scapNavItem = within(navigation).getByRole('button', {
name: /openscap/i,
});
const fscNavItem = within(navigation).getByRole('button', {
name: /openscap/i,
});
const snapshotsNavItem = within(navigation).getByRole('button', {
name: /openscap/i,
});
const repositoriesNavItem = within(navigation).getByRole('button', {
name: /openscap/i,
});
const packagesNavItem = within(navigation).getByRole('button', {
name: /openscap/i,
});
const firstbootNavItem = within(navigation).getByRole('button', {
name: /openscap/i,
});
const detailsNavItem = within(navigation).getByRole('button', {
name: /details/i,
});
@ -45,6 +61,11 @@ describe('EditImageWizard', () => {
expect(targetNavItem).toBeEnabled();
expect(registerNavItem).toBeEnabled();
expect(scapNavItem).toBeEnabled();
expect(fscNavItem).toBeEnabled();
expect(snapshotsNavItem).toBeEnabled();
expect(repositoriesNavItem).toBeEnabled();
expect(packagesNavItem).toBeEnabled();
expect(firstbootNavItem).toBeEnabled();
expect(detailsNavItem).toBeEnabled();
});
});