Jest ne pas

// .not - Test the opposite
const bestLaCroixFlavor = 'strawberry';
test('the best flavor is not coconut', () => {
  expect(bestLaCroixFlavor).not.toBe('coconut');
});
haraldlons