From 9a9fb7464c063d237c540cce749e7d90318a0279 Mon Sep 17 00:00:00 2001 From: "Kamat, Trivikram" <16024985+trivikr@users.noreply.github.com> Date: Thu, 18 Nov 2021 21:29:08 +0000 Subject: [PATCH] test(endpoint): mention fips/dualstack config in title --- tests/functional/endpoints/index.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/functional/endpoints/index.spec.ts b/tests/functional/endpoints/index.spec.ts index 8137c8fa36f0..a1ce091fc884 100644 --- a/tests/functional/endpoints/index.spec.ts +++ b/tests/functional/endpoints/index.spec.ts @@ -11,7 +11,8 @@ const getClientPackageName = (sdkId: string) => describe("endpoints", () => { for (const { sdkId, region, useFipsEndpoint, useDualstackEndpoint, hostname } of testCases) { const clientPackageName = getClientPackageName(sdkId); - it(`testing "${clientPackageName}" with region: ${region}`, async () => { + const testSetup = JSON.stringify({ region, useFipsEndpoint, useDualstackEndpoint }); + it(`testing "${clientPackageName}" with ${testSetup}`, async () => { const { defaultRegionInfoProvider } = await import( join("..", "..", "..", "clients", clientPackageName, "src", "endpoints") );