Skip to content

Commit 3dfb40f

Browse files
authored
chore: create table with AutoScaling in integ tests (#1098)
1 parent 299d2a1 commit 3dfb40f

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

features/dynamodb/step_definitions/dynamodb.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,7 @@ function createTable(world, callback) {
7474
TableName: world.tableName,
7575
AttributeDefinitions: [{ AttributeName: "id", AttributeType: "S" }],
7676
KeySchema: [{ AttributeName: "id", KeyType: "HASH" }],
77-
ProvisionedThroughput: {
78-
ReadCapacityUnits: 10,
79-
WriteCapacityUnits: 5
80-
}
77+
BillingMode: "PAY_PER_REQUEST"
8178
};
8279

8380
world.service.createTable(params, function (err, data) {

0 commit comments

Comments
 (0)