Skip to content

Commit

Permalink
Using DynamoDB port for testing endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
fishcharlie committed May 17, 2019
1 parent 50e8f5a commit 7e781eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/plugins/03_DynamoDB.js
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit 7e781eb

Please sign in to comment.