()
| 1600 | |
| 1601 | |
| 1602 | def test_some_check_array(): |
| 1603 | items = ['Four', 'Three', 'One'] |
| 1604 | result = [''] |
| 1605 | pm.eval("(result, arr) => {arr.some((element, index, array) => result[0] = array)}")(result, items) |
| 1606 | assert result == [items] |
| 1607 | assert result[0] is items |
| 1608 | |
| 1609 | |
| 1610 | def test_some_check_this_arg(): |
nothing calls this directly
no outgoing calls
no test coverage detected