From 483db43e949163269637606db1cd59b0c7280033 Mon Sep 17 00:00:00 2001 From: Tyler Butler Date: Thu, 13 Oct 2022 17:55:40 -0700 Subject: [PATCH] refactor(build-tools): Include ".generated" in typetest filenames --- .../packages/build-tools/src/typeValidator/testGeneration.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-tools/packages/build-tools/src/typeValidator/testGeneration.ts b/build-tools/packages/build-tools/src/typeValidator/testGeneration.ts index 7f628b682085..59a1205e127b 100644 --- a/build-tools/packages/build-tools/src/typeValidator/testGeneration.ts +++ b/build-tools/packages/build-tools/src/typeValidator/testGeneration.ts @@ -109,7 +109,7 @@ export async function generateTests(packageDetails: PackageDetails) { `${testPath}/validate${oldVersionNameForFile .split("-") .map((p) => p[0].toUpperCase() + p.substring(1)) - .join("")}.ts`, + .join("")}.generated.ts`, testString.join("\n"), ); }