From adb08a9e1626f2df1196360d88a6557889d4f0c4 Mon Sep 17 00:00:00 2001 From: sid <48153483+siddsriv@users.noreply.github.com> Date: Thu, 14 Dec 2023 15:37:53 -0500 Subject: [PATCH] fix: skip NeptuneGraph client test (#4549) --- test/clients.spec.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/clients.spec.js b/test/clients.spec.js index edb4a53a74..945f8ffa12 100644 --- a/test/clients.spec.js +++ b/test/clients.spec.js @@ -8,6 +8,9 @@ var customConstructorArgs = { for (var serviceAbbreviation in metadata) { var clientName = metadata[serviceAbbreviation].name; + if (clientName === 'NeptuneGraph') { + continue; // NeptuneGraph is not present in AWS SDK for JSv2. + } describe( 'Instantiating AWS.' + clientName + ' clients', (function(clientName, serviceAbbreviation) {