Skip to content

Commit

Permalink
Skips test after suppressing error scenario
Browse files Browse the repository at this point in the history
  • Loading branch information
spong committed Jun 9, 2022
1 parent 6217ca3 commit 238949c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ describe('useInstalledIntegrations', () => {
]);
});

it('handles exceptions from the API', async () => {
// Skipping until we re-enable errors
it.skip('handles exceptions from the API', async () => {
const exception = new Error('Boom!');
jest.spyOn(api, 'fetchInstalledIntegrations').mockRejectedValue(exception);

Expand Down

0 comments on commit 238949c

Please sign in to comment.