Wizard: add AAP step

This commit is contained in:
Lucas Garfield 2025-05-14 17:45:09 -05:00 committed by Gianluca Zuccarelli
parent 11e352440f
commit 04adcc133c
16 changed files with 776 additions and 14 deletions

View file

@ -24,6 +24,8 @@ vi.mock('@unleash/proxy-client-react', () => ({
switch (flag) {
case 'image-builder.compliance.enabled':
return true;
case 'image-builder.aap.enabled':
return true;
default:
return false;
}

View file

@ -109,12 +109,12 @@ describe('Step Services', () => {
router = undefined;
});
test('clicking Next loads First boot script', async () => {
test('clicking Next loads Ansible Automation Platform', async () => {
await renderCreateMode();
await goToServicesStep();
await clickNext();
await screen.findByRole('heading', {
name: 'First boot configuration',
name: 'Ansible Automation Platform',
});
});