📅  最后修改于: 2022-03-11 15:04:11.603000             🧑  作者: Mango
const fruits = ['apple', 'cat'];
test('should have array of string', () => {
expect(fruits).toEqual(
expect.arrayContaining([expect.any(String)])
);
});