()
| 939 | |
| 940 | |
| 941 | def test_forEach_check_index(): |
| 942 | items = ['Four', 'Three', 'One'] |
| 943 | result = [''] |
| 944 | pm.eval("(result, arr) => {arr.forEach((element, index) => result[0] += index)}")(result, items) |
| 945 | assert result == ['012'] |
| 946 | |
| 947 | |
| 948 | def test_forEach_check_array(): |
nothing calls this directly
no outgoing calls
no test coverage detected