jest expect an error to be throw async function code example
Example: jest expect async function to throw error
it('should test async errors', async () => {
await expect(failingAsyncTest())
.rejects
.toThrow('I should fail');
});