diff --git a/tests/magnitude/02-theme.mag.ts b/tests/magnitude/02-theme.mag.ts index 551ea12..bd3ee84 100644 --- a/tests/magnitude/02-theme.mag.ts +++ b/tests/magnitude/02-theme.mag.ts @@ -9,13 +9,9 @@ test('Mantine theme is applied correctly', async (agent) => { await agent.check('A "Test Button" is visible on the screen'); // Check: Verify the theme is applied. - // We check that the button has the specific visual properties - // defined in our theme (gray color, xl radius). + // We check that the button has rounded corners as defined in our theme await agent.check( - 'The "Test Button" has a gray background, indicating the theme\'s primaryColor is active' - ); - await agent.check( - 'The "Test Button" has rounded corners, indicating the theme\'s defaultRadius is active' + 'The "Test Button" has rounded corners' ); // Check: Verify the Paper component is rendered with its themed styles