Jest Attendez-vous à ce que la fonction asynchrone lance une erreur

it('should test async errors', async () =>  {        
    await expect(failingAsyncTest())
    .rejects
    .toThrow('I should fail');
});
Worried Walrus