首页 > 解决方案 > 开玩笑 - 期待中的 [功能匿名]

问题描述

Jest 期望预期的Cell属性值为[Function anonymous]

什么是正确的语法?

() => {}似乎[Function Cell]因此测试失败。

const expected =
      [{ Cell: () => {}, Header: '', accessor: () => {}, disableSortBy: true, id: 18, width: 50 }];

expect(result).toBe(expected);

安慰:

 $ jest test

----
    - Expected  - 1
    + Received  + 1

    @@ -1,8 +1,8 @@
      Array [
        Object {
    -     "Cell": [Function Cell],
    +     "Cell": [Function anonymous],
          "Header": "",
          "accessor": [Function accessor],
          "disableSortBy": true,
          "id": 18,
          "width": 50,

标签: javascriptjestjs

解决方案


您需要告诉它需要数组,然后是对象。每个对象都需要指定其类型或值

尝试这样的事情

const expected = expect.arrayContaining([
    expect.objectContaining({
      Cell: expect.any(Function),
      Header: expect.any(String),
      accessor: expect.any(Function),
      disableSortBy: expect.any(Boolean),
      /*...........so..on............*/
    })
  ]);

expect(result).toEqual(expected);


推荐阅读