Skip to content

Commit

Permalink
Fix test/tsconfig.json alias for internal test utils (vercel#59570)
Browse files Browse the repository at this point in the history
Inside `test/` folder we should use different path for alias paths
Follow up vercel#59550
  • Loading branch information
huozhi authored and agustints committed Jan 6, 2024
1 parent afcb4e6 commit 97075cb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
}
}
}

0 comments on commit 97075cb

Please sign in to comment.