Skip to content

Commit f61374f

Browse files
committed
initial commit
1 parent 01bf0f7 commit f61374f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/__tests__/entity.update.unit.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ describe('update', () => {
189189
expect(TableName).toBe('test-table')
190190
})
191191

192-
it.skip('creates update that just removes a field', () => {
192+
it('creates update that just removes a field', () => {
193193
let { TableName, Key, UpdateExpression, ExpressionAttributeNames } = TestEntity2.updateParams({
194194
email: 'test-pk',
195195
test: null
@@ -200,7 +200,7 @@ describe('update', () => {
200200
expect(TableName).toBe('test-table2')
201201
})
202202

203-
it.skip('creates update that just removes a composite field', () => {
203+
it('creates update that just removes a composite field', () => {
204204
let { TableName, Key, UpdateExpression, ExpressionAttributeNames } = TestEntity2.updateParams({
205205
email: 'test-pk',
206206
test_composite: null

0 commit comments

Comments
 (0)