We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48e4910 commit cde00edCopy full SHA for cde00ed
1 file changed
client/tests/stories/LoginPage.stories.ts
@@ -1,6 +1,5 @@
1
import type { Meta, StoryObj } from "@storybook/vue3";
2
import LoginPage from "@/components/views/login/LoginPage.vue";
3
-import { useLoadingStore } from "@/stores/store";
4
5
const meta: Meta<typeof LoginPage> = {
6
title: "Components/Views/LoginPage",
@@ -18,15 +17,3 @@ export const Default: Story = {
18
17
template: '<LoginPage v-bind="args" />',
19
}),
20
};
21
-
22
-export const TimeoutError: Story = {
23
- render: (args) => ({
24
- components: { LoginPage },
25
- setup() {
26
- const loadingStore = useLoadingStore();
27
- loadingStore.isTimeout = true;
28
- return { args };
29
- },
30
- template: '<LoginPage v-bind="args" />',
31
- }),
32
-};
0 commit comments