()
| 1131 | |
| 1132 | |
| 1133 | def test_map_check_array(): |
| 1134 | items = ['Four', 'Three', 'One'] |
| 1135 | result = [''] |
| 1136 | pm.eval("(result, arr) => {arr.map((element, index, array) => result[0] = array)}")(result, items) |
| 1137 | assert result == [items] |
| 1138 | assert result[0] is items |
| 1139 | |
| 1140 | |
| 1141 | def test_map_check_this_arg(): |
nothing calls this directly
no outgoing calls
no test coverage detected