()
| 1740 | |
| 1741 | |
| 1742 | def test_every_check_index(): |
| 1743 | items = [4, 2, 6, 7] |
| 1744 | result = [''] |
| 1745 | pm.eval("(result, arr) => {arr.every((x, index) => result[0] += index)}")(result, items) |
| 1746 | assert items == [4, 2, 6, 7] |
| 1747 | assert result[0] == '0' |
| 1748 | |
| 1749 | |
| 1750 | def test_every_check_array(): |
nothing calls this directly
no outgoing calls
no test coverage detected