storybooks second release
This commit is contained in:
@ -16,3 +16,26 @@ type Story = StoryObj<typeof meta>;
|
||||
export const Default: Story = {
|
||||
render: () => <KcPageStory />
|
||||
};
|
||||
|
||||
/**
|
||||
* WithProfileError:
|
||||
* - Purpose: Tests when an error occurs in one or more profile fields (e.g., invalid email format).
|
||||
* - Scenario: The component displays error messages next to the affected fields.
|
||||
* - Key Aspect: Ensures the profile fields show error messages when validation fails.
|
||||
*/
|
||||
export const WithProfileError: Story = {
|
||||
render: () => (
|
||||
<KcPageStory
|
||||
kcContext={{
|
||||
url: {
|
||||
loginAction: "/mock-login-action"
|
||||
},
|
||||
messagesPerField: {
|
||||
existsError: (field: string) => field === "email",
|
||||
get: () => "Invalid email format"
|
||||
},
|
||||
isAppInitiatedAction: false
|
||||
}}
|
||||
/>
|
||||
)
|
||||
};
|
||||
|
Reference in New Issue
Block a user