📌  相关文章
📜  开玩笑检查字符串数组 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:11.603000             🧑  作者: Mango

代码示例2
const fruits = ['apple', 'cat'];

test('should have array of string', () => {
  expect(fruits).toEqual(
    expect.arrayContaining([expect.any(String)])
  );
});