Skip to content

Commit

Permalink
fix: set dummy creds in env
Browse files Browse the repository at this point in the history
  • Loading branch information
solaris007 committed Dec 1, 2023
1 parent a70fd89 commit 4f3aae6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/spacecat-shared-data-access/test-it/db.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ describe('DynamoDB Integration Test', async () => {
this.timeout(20000);

process.env.AWS_REGION = 'local';
process.env.AWS_DEFAULT_REGION = 'local';
process.env.AWS_ACCESS_KEY_ID = 'dummy';
process.env.AWS_SECRET_ACCESS_KEY = 'dummy';

dynamoDbLocalProcess = dynamoDbLocal.spawn({ port: 8000, sharedDb: true });

Expand Down

0 comments on commit 4f3aae6

Please sign in to comment.