Image following test case:
it(\'valid emails checks\', () => { [\'abc@y.com\', \'a@b.nz\'/*, ...*/].map(mail => { expect(isValid(mail)).toBe(true);
You try this one: https://github.com/mattphillips/jest-expect-message
test('returns 2 when adding 1 and 1', () => { expect(1 + 1, 'Woah this should be 2!').toBe(3); });