Skip to content

Commit bcfb45b

Browse files
authored
test(endpoint): mention fips/dualstack config in title (#3041)
1 parent d2b2c45 commit bcfb45b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/functional/endpoints/index.spec.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ const getClientPackageName = (sdkId: string) =>
1111
describe("endpoints", () => {
1212
for (const { sdkId, region, useFipsEndpoint, useDualstackEndpoint, hostname } of testCases) {
1313
const clientPackageName = getClientPackageName(sdkId);
14-
it(`testing "${clientPackageName}" with region: ${region}`, async () => {
14+
const testSetup = JSON.stringify({ region, useFipsEndpoint, useDualstackEndpoint });
15+
it(`testing "${clientPackageName}" with ${testSetup}`, async () => {
1516
const { defaultRegionInfoProvider } = await import(
1617
join("..", "..", "..", "clients", clientPackageName, "src", "endpoints")
1718
);

0 commit comments

Comments
 (0)