Skip to content

Commit 8537664

Browse files
author
Ken Winner
committed
test change so I can keep the branch locally before removing
1 parent 70bd542 commit 8537664

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/__tests__/table.transactGet.integ.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import { DocumentClient } from 'aws-sdk/clients/dynamodb';
88

99
let container: any;
1010

11-
let TestTable: Table,
12-
TestEntity: Entity<{}>;
11+
let TestTable: Table,
12+
TestEntity: Entity<{}>;
1313

1414
const dynamodbLocalVersion = process.env.TEST_LOCAL_DYNAMO_DB_VERSION || 'latest';
1515
const dynamoPort = 8000;
@@ -74,9 +74,9 @@ describe('transactGetIntegration', () => {
7474
]) as DocumentClient.TransactGetItemsOutput;
7575

7676
console.log(getTransactionResult);
77-
77+
7878
expect(getTransactionResult.Responses).toBeTruthy();
79-
expect(getTransactionResult.Responses![0].Item).toEqual({})
79+
expect(getTransactionResult.Responses![0].Item).toEqual({});
8080
});
8181

8282
it('returns an item', async () => {
@@ -89,7 +89,7 @@ describe('transactGetIntegration', () => {
8989
const getTransactionResult = await TestTable.transactGet([
9090
TestEntity.getTransaction({ pk: 'test', sk: 'notempty' })
9191
]) as DocumentClient.TransactGetItemsOutput;
92-
92+
9393
expect(getTransactionResult.Responses).toBeTruthy();
9494
expect(getTransactionResult.Responses![0].Item!.email).toEqual(pk);
9595
expect(getTransactionResult.Responses![0].Item!.sort).toEqual(sk);

0 commit comments

Comments
 (0)