Skip to content

Commit

Permalink
style: format js
Browse files Browse the repository at this point in the history
  • Loading branch information
paulschreiber committed Mar 27, 2024
1 parent 7f2a3b1 commit cbadc18
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/landscape/components/LandscapeView.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ test('LandscapeView: Update Shared Data', async () => {
input: {
id: 'de-3',
name: 'Data Entry 3 revised',
description: 'Description 3'
description: 'Description 3',
},
})
)
Expand Down Expand Up @@ -376,7 +376,13 @@ test('LandscapeView: Update Shared Data', async () => {
);
expect(terrasoApi.requestGraphQL).toHaveBeenCalledWith(
expect.stringContaining('mutation updateSharedData'),
{ input: { id: 'de-3', name: 'Data Entry 3 revised', description: 'Description 3' } }
{
input: {
id: 'de-3',
name: 'Data Entry 3 revised',
description: 'Description 3',
},
}
);
});

Expand Down

0 comments on commit cbadc18

Please sign in to comment.