ImagesTable: old images alert position

This commit is contained in:
Ondrej Ezr 2024-04-17 13:25:09 +02:00 committed by Lucas Garfield
parent 562fb0df08
commit fb48d59399
3 changed files with 49 additions and 34 deletions

View file

@ -109,13 +109,13 @@ describe('Blueprints', () => {
await selectBlueprintById(user, blueprintIdOutOfSync);
await screen.findByText(
"You haven't built new images for this version of your blueprint yet"
'The selected blueprint is at version 2, images are at version 1. Build images to synchronize with the latest version.'
);
await selectBlueprintById(user, blueprintIdWithComposes);
expect(
screen.queryByText(
"You haven't built new images for this version of your blueprint yet"
'The selected blueprint is at version 2, images are at version 1. Build images to synchronize with the latest version.'
)
).not.toBeInTheDocument();
});