Skip to content

Commit

Permalink
1.32.1
Browse files Browse the repository at this point in the history
  • Loading branch information
katspaugh committed Mar 27, 2024
1 parent d46c800 commit 9d28f70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "safe-wallet-web",
"homepage": "https://github.com/safe-global/safe-wallet-web",
"license": "GPL-3.0",
"version": "1.32.0",
"version": "1.32.1",
"type": "module",
"scripts": {
"dev": "next dev",
Expand Down

1 comment on commit 9d28f70

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage report

Caution

Test run failed

St.
Category Percentage Covered / Total
🟡 Statements 79.36% 11080/13961
🔴 Branches 58.42% 2612/4471
🟡 Functions 65.94% 1785/2707
🟢 Lines 80.67% 9980/12371

Test suite run failed

Failed tests: 3/1404. Failed suites: 1/194.
  ● tx-history-filter › fetchFilteredTxHistory › should get incoming transfers relevant to `type`

    expect(jest.fn()).toHaveBeenCalledWith(...expected)

    - Expected
    + Received

      "4",
      "0x123",
      Object {
        "executed": undefined,
    -   "timezone_offset": 3600000,
    +   "timezone_offset": 7200000,
        "trusted": false,
        "value": "123",
      },
      "pageUrl1",

    Number of calls: 1

      389 |       )
      390 |
    > 391 |       expect(getIncomingTransfers).toHaveBeenCalledWith(
          |                                    ^
      392 |         '4',
      393 |         '0x123',
      394 |         { value: '123', executed: undefined, timezone_offset: 3600000, trusted: false },

      at Object.toHaveBeenCalledWith (src/utils/__tests__/tx-history-filter.test.ts:391:36)

  ● tx-history-filter › fetchFilteredTxHistory › should get outgoing transfers relevant to `type`

    expect(jest.fn()).toHaveBeenCalledWith(...expected)

    - Expected
    + Received

      "100",
      "0x456",
      Object {
        "executed": "true",
        "execution_date__gte": "1970-01-01T00:00:00.000Z",
    -   "timezone_offset": 3600000,
    +   "timezone_offset": 7200000,
        "trusted": false,
      },
      "pageUrl2",

    Number of calls: 1

      412 |       )
      413 |
    > 414 |       expect(getMultisigTransactions).toHaveBeenCalledWith(
          |                                       ^
      415 |         '100',
      416 |         '0x456',
      417 |         {

      at Object.toHaveBeenCalledWith (src/utils/__tests__/tx-history-filter.test.ts:414:39)

  ● tx-history-filter › fetchFilteredTxHistory › should get module transfers relevant to `type`

    expect(jest.fn()).toHaveBeenCalledWith(...expected)

    - Expected
    + Received

      "1",
      "0x789",
      Object {
        "executed": undefined,
    -   "timezone_offset": 3600000,
    +   "timezone_offset": 7200000,
        "to": "0x123",
        "trusted": false,
      },
      "pageUrl3",

    Number of calls: 1

      437 |       )
      438 |
    > 439 |       expect(getModuleTransactions).toHaveBeenCalledWith(
          |                                     ^
      440 |         '1',
      441 |         '0x789',
      442 |         { to: '0x123', executed: undefined, timezone_offset: 3600000, trusted: false },

      at Object.toHaveBeenCalledWith (src/utils/__tests__/tx-history-filter.test.ts:439:37)

Report generated by 🧪jest coverage report action from 9d28f70

Please sign in to comment.