J'utilise create-react-app et j'essaie d'écrire un test en jest pour mon créateur d'action. L'un des champs que l'action ajoute est un ID aléatoire. Je veux donc utiliser expect.any(String) pour que le test passe. Cependant, j'obtiens TypeError: expect.any is not a function
Voici mon test :
describe('actions', () => {
it('should create an action to add a ticket', () => {
const payload = {
summary: 'A summary',
description: 'A description',
status:'open',
priority: 'minor',
};
const expected = {
type: actions.ADD_TICKET,
ticket: {
...payload,
id: expect.any(String),
},
};
const actual = addTicket(payload);
expect(actual).toEqual(expected)
})
})