Skip to content

Commit

Permalink
Merge pull request #6 from lpsinger/dynamodb-local-2.x
Browse files Browse the repository at this point in the history
Fix unit tests by updating auth for dynamodb-local 2.x
  • Loading branch information
dakota002 authored Aug 10, 2023
2 parents 137fd5d + 95b4739 commit c13e2b7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,12 @@ const N = 20
beforeAll(async () => {
doc = DynamoDBDocument.from(
new DynamoDB({
credentials: { accessKeyId: '-', secretAccessKey: '-' },
credentials: {
accessKeyId: 'fakeMyKeyId',
secretAccessKey: 'fakeSecretAccessKey',
},
endpoint: 'http://localhost:8000',
region: '-',
region: 'local-env',
})
)
const options: DynamoDBAutoIncrementProps = {
Expand Down

0 comments on commit c13e2b7

Please sign in to comment.