We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents de98ecb + f954989 commit a5fbcd6Copy full SHA for a5fbcd6
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@shelf/dynamodb-parallel-scan",
3
- "version": "3.5.2",
+ "version": "3.5.3",
4
"description": "Scan large DynamoDB tables faster with parallelism",
5
"keywords": [
6
"aws",
src/ddb.ts
@@ -31,6 +31,13 @@ const getCredentials = (credentials?: Credentials) => {
31
return credentials;
32
}
33
34
+ if (isTest) {
35
+ return {
36
+ accessKeyId: 'fakeMyKeyId',
37
+ secretAccessKey: 'fakeSecretAccessKey',
38
+ };
39
+ }
40
+
41
return undefined;
42
};
43
const ddbv3DocClient = (credentials?: Credentials) =>
0 commit comments