From 7e781eb4beb2375352f372fecfd2b1736bd9f51c Mon Sep 17 00:00:00 2001 From: Charlie Fish Date: Thu, 16 May 2019 23:03:44 -0600 Subject: [PATCH] Using DynamoDB port for testing endpoint --- test/plugins/03_DynamoDB.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/plugins/03_DynamoDB.js b/test/plugins/03_DynamoDB.js index 8070d92..414a58c 100644 --- a/test/plugins/03_DynamoDB.js +++ b/test/plugins/03_DynamoDB.js @@ -24,7 +24,7 @@ describe("DynamoDB", function() { "secretAccessKey": "TESTSECRET" }); let dynamodb = new AWS.DynamoDB({ - "endpoint": new AWS.Endpoint("http://localhost:8000"), + "endpoint": new AWS.Endpoint(`http://localhost:${DYNAMO_DB_PORT}`), "region": "us-west-2" }); beforeEach(() => cache = new HeapStash());