Skip to content

Commit

Permalink
fix(core): missing request id in logs
Browse files Browse the repository at this point in the history
  • Loading branch information
whimzyLive committed Mar 14, 2022
1 parent 433efd1 commit f0fe713
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ test('updates item and attributes marked to be autoUpdated', async () => {
expect(updatedItem).toEqual({id: '1', name: 'Me', status: 'active'});
});

test('updates item with unique attributes and returns all updated attributes', async () => {
test.only('updates item with unique attributes and returns all updated attributes', async () => {
manager.findOne = jest
.fn()
// mock first call to return existing item, this will be called before update is performed
Expand Down

0 comments on commit f0fe713

Please sign in to comment.