diff --git a/src/components/Alert/Alert.stories.tsx b/src/components/Alert/Alert.stories.tsx
index e44e2a2a..21f35f3a 100644
--- a/src/components/Alert/Alert.stories.tsx
+++ b/src/components/Alert/Alert.stories.tsx
@@ -22,12 +22,21 @@ export const Information: Story = {
args: { status: 'info', message: 'A Notification' }
};
-export const InformationWithExplanation: Story = {
+export const InformationWithMessageAndExplanation: Story = {
...Information,
- name: 'Information with explanation',
+ name: 'Information with a message and an explanation',
args: {
...Information.args,
- children: 'You can also add an explanation to the notification.'
+ message: 'Here is the message of the notification.',
+ children: 'Here is the explanation of the notification.'
+ }
+};
+
+export const InformationWithOnlyExplanation: Story = {
+ ...Information,
+ name: 'Information with only an explanation',
+ args: {
+ children: 'You can also only have an explanation in the notification.'
}
};
diff --git a/src/components/Alert/Alert.test.tsx b/src/components/Alert/Alert.test.tsx
index 91f3e239..7aabf540 100644
--- a/src/components/Alert/Alert.test.tsx
+++ b/src/components/Alert/Alert.test.tsx
@@ -1,5 +1,6 @@
import '@testing-library/jest-dom';
import { render, screen, within } from '@testing-library/react';
+import Paragraph from '../Paragraph/Paragraph';
import { Alert, AlertType } from './Alert';
import { AlertFieldLevel } from './AlertFieldLevel';
@@ -45,6 +46,17 @@ describe('