Skip to content

Commit cde00ed

Browse files
committed
Client : Storybook : Updated test so build doesn't fail
1 parent 48e4910 commit cde00ed

1 file changed

Lines changed: 0 additions & 13 deletions

File tree

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import type { Meta, StoryObj } from "@storybook/vue3";
22
import LoginPage from "@/components/views/login/LoginPage.vue";
3-
import { useLoadingStore } from "@/stores/store";
43

54
const meta: Meta<typeof LoginPage> = {
65
title: "Components/Views/LoginPage",
@@ -18,15 +17,3 @@ export const Default: Story = {
1817
template: '<LoginPage v-bind="args" />',
1918
}),
2019
};
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

Comments
 (0)