()
| 1748 | |
| 1749 | |
| 1750 | def test_every_check_array(): |
| 1751 | items = ['Four', 'Three', 'One'] |
| 1752 | result = [''] |
| 1753 | pm.eval("(result, arr) => {arr.every((element, index, array) => result[0] = array)}")(result, items) |
| 1754 | assert result == [items] |
| 1755 | assert result[0] is items |
| 1756 | |
| 1757 | |
| 1758 | def test_every_check_this_arg(): |
nothing calls this directly
no outgoing calls
no test coverage detected