From f2d633c02ac2a91244f1e296a1909263b54d8a2a Mon Sep 17 00:00:00 2001 From: Danijel Martinek Date: Thu, 21 May 2026 11:49:26 +0200 Subject: [PATCH] test(auth): use @/ alias in bind-production types test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit bind-production.types.test.ts imported feature.manifest and the sign-in use case with `../` parent paths. Test files import src modules via the `@/` alias per the repo convention — this clears the way for the new no-relative-parent-import-in-tests rule. --- packages/auth/src/di/bind-production.types.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/auth/src/di/bind-production.types.test.ts b/packages/auth/src/di/bind-production.types.test.ts index cedb544..77eeb7d 100644 --- a/packages/auth/src/di/bind-production.types.test.ts +++ b/packages/auth/src/di/bind-production.types.test.ts @@ -1,11 +1,11 @@ import { describe, it } from "vitest"; import type { ProductionUseCase } from "@repo/core-shared/conformance"; -import type { AuthManifest } from "../feature.manifest"; +import type { AuthManifest } from "@/feature.manifest"; import type { SignInInput, SignInOutput, -} from "../application/use-cases/sign-in.use-case"; -import { signInUseCase } from "../application/use-cases/sign-in.use-case"; +} from "@/application/use-cases/sign-in.use-case"; +import { signInUseCase } from "@/application/use-cases/sign-in.use-case"; describe("auth.signIn binding slot (type-level)", () => { it("rejects an unwrapped factory", () => {