From b1ee866513e980ade87fd0c83b4e78fc2ab33a99 Mon Sep 17 00:00:00 2001 From: Jiachi Liu Date: Wed, 13 Dec 2023 14:32:22 +0100 Subject: [PATCH] Fix test/tsconfig.json alias for internal test utils --- test/tsconfig.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/tsconfig.json b/test/tsconfig.json index a57f6b9eaa954..3b0ad18e33519 100644 --- a/test/tsconfig.json +++ b/test/tsconfig.json @@ -13,11 +13,11 @@ "baseUrl": ".", "types": ["react", "jest", "node", "trusted-types", "jest-extended"], "paths": { - "development-sandbox": ["test/lib/development-sandbox"], - "next-test-utils": ["test/lib/next-test-utils"], - "amp-test-utils": ["test/lib/amp-test-utils"], - "next-webdriver": ["test/lib/next-webdriver"], - "e2e-utils": ["test/lib/e2e-utils"] + "development-sandbox": ["./lib/development-sandbox"], + "next-test-utils": ["./lib/next-test-utils"], + "amp-test-utils": ["./lib/amp-test-utils"], + "next-webdriver": ["./lib/next-webdriver"], + "e2e-utils": ["./lib/e2e-utils"] } } }