Skip to content

Commit

Permalink
Wizard: add more tests for on prem filesystem
Browse files Browse the repository at this point in the history
  • Loading branch information
avitova authored and regexowl committed Nov 26, 2024
1 parent 80f7980 commit 70462be
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/Components/Blueprints/ImportBlueprintModal.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -315,12 +315,19 @@ describe('Import modal', () => {
await screen.findByRole('textbox', {
name: 'Select activation key',
});
await clickNext();

// OpenScap
await clickNext();

//File system configuration
// File system configuration
await clickNext();
const partition = await screen.findByText('/var');
expect(partition).toBeInTheDocument();
const sizeValue = screen.getByRole('cell', {
name: /2/i,
});
expect(sizeValue).toBeInTheDocument();

await clickNext();

// Custom Repos step
Expand Down

0 comments on commit 70462be

Please sign in to comment.