Skip to content

Latest commit

 

History

History
30 lines (26 loc) · 564 Bytes

README.md

File metadata and controls

30 lines (26 loc) · 564 Bytes

How to reproduce

  • docker compose up -d
  • npm i
  • npm run test
  • check failed test:
  ● test json field parse

    expect(received).toEqual(expected) // deep equality

    - Expected  - 8
    + Received  + 2

      Array [
        Object {
          "id": 1,
    -     "jsonArray": Array [
    -       "foo",
    -       "bar",
    -     ],
    -     "jsonObj": Object {
    -       "bar": "abc",
    -       "foo": 2,
    -     },
    +     "jsonArray": "[\"foo\",\"bar\"]",
    +     "jsonObj": "{\"foo\":2,\"bar\":\"abc\"}",
        },
      ]