[Closes #10] Reactive breadcrumbs
This commit is contained in:
parent
6d3cdb560d
commit
a1708317ec
19 changed files with 200 additions and 33 deletions
|
|
@ -1,6 +1,6 @@
|
|||
import { mount, flushPromises } from "@vue/test-utils";
|
||||
import { describe, it, expect, vi, beforeEach } from "vitest";
|
||||
import CreateAccountPage from "~/pages/member/auth/create-account.vue";
|
||||
import CreateAccountPage from "~/pages/auth/create-account.vue";
|
||||
|
||||
// Mock auth client
|
||||
const authMocks = vi.hoisted(() => ({
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
import { mount, flushPromises } from "@vue/test-utils";
|
||||
import { describe, expect, it, vi, beforeEach, beforeAll, afterAll } from "vitest";
|
||||
import LoginPage from "~/pages/member/auth/login.vue";
|
||||
import LoginPage from "~/pages/auth/login.vue";
|
||||
|
||||
// Mock the auth store
|
||||
const authStoreMocks = vi.hoisted(() => ({
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
import { mount, flushPromises } from "@vue/test-utils";
|
||||
import { describe, expect, it, vi, beforeEach, beforeAll, afterAll } from "vitest";
|
||||
import LogoutPage from "~/pages/member/auth/logout.vue";
|
||||
import LogoutPage from "~/pages/auth/logout.vue";
|
||||
|
||||
// Mock the auth store
|
||||
const mocks = vi.hoisted(() => ({
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
import { describe, expect, it, beforeEach } from "vitest";
|
||||
import { beforeEach, describe, expect, it } from "vitest";
|
||||
import { mount, type VueWrapper } from "@vue/test-utils";
|
||||
import IndexPage from "~/pages/index.vue";
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue