()
| 1592 | |
| 1593 | |
| 1594 | def test_some_check_index(): |
| 1595 | items = [4, 2, 6, 7] |
| 1596 | result = [''] |
| 1597 | pm.eval("(result, arr) => {arr.some((x, index) => result[0] += index)}")(result, items) |
| 1598 | assert items == [4, 2, 6, 7] |
| 1599 | assert result[0] == '0123' |
| 1600 | |
| 1601 | |
| 1602 | def test_some_check_array(): |
nothing calls this directly
no outgoing calls
no test coverage detected