Wizard: Services step basics

This adds basic structure of the Services step.
This commit is contained in:
regexowl 2025-01-22 10:04:24 +01:00 committed by Klara Simickova
parent c6bee55544
commit 0f86336af6
23 changed files with 122 additions and 3 deletions

View file

@ -38,6 +38,7 @@ const goToFirewallStep = async () => {
};
const goToReviewStep = async () => {
await clickNext(); // Services
await clickNext(); // First boot script
await clickNext(); // Details
await enterBlueprintName();
@ -56,12 +57,12 @@ describe('Step Firewall', () => {
router = undefined;
});
test('clicking Next loads First boot', async () => {
test('clicking Next loads Services', async () => {
await renderCreateMode();
await goToFirewallStep();
await clickNext();
await screen.findByRole('heading', {
name: 'First boot configuration',
name: 'Systemd services',
});
});