()
| 153 | |
| 154 | |
| 155 | def test_toString(): |
| 156 | items = [1, 2, 3] |
| 157 | result = [None] |
| 158 | pm.eval("(result, arr) => {result[0] = arr.toString()}")(result, items) |
| 159 | assert result[0] == '1,2,3' |
| 160 | |
| 161 | # push |
| 162 |
nothing calls this directly
no outgoing calls
no test coverage detected