test(blog): use @/ alias in container test imports
container.test.ts imported cross-directory modules with `../...` paths. Test files use the `@/` alias for src imports per the repo convention; this was the outlier vs auth/media/navigation.
This commit is contained in:
@@ -2,8 +2,8 @@ import { afterEach, beforeEach, describe, expect, it } from "vitest";
|
|||||||
import { blogContainer } from "./container";
|
import { blogContainer } from "./container";
|
||||||
import { BLOG_SYMBOLS } from "./symbols";
|
import { BLOG_SYMBOLS } from "./symbols";
|
||||||
import { BlogModule } from "./module";
|
import { BlogModule } from "./module";
|
||||||
import { MockArticlesRepository } from "../infrastructure/repositories/articles.repository.mock";
|
import { MockArticlesRepository } from "@/infrastructure/repositories/articles.repository.mock";
|
||||||
import type { IArticlesRepository } from "../application/repositories/articles.repository.interface";
|
import type { IArticlesRepository } from "@/application/repositories/articles.repository.interface";
|
||||||
|
|
||||||
describe("blogContainer", () => {
|
describe("blogContainer", () => {
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
|
|||||||
Reference in New Issue
Block a user