()
| 2326 | |
| 2327 | |
| 2328 | def test_valueOf(): |
| 2329 | items = [1, 2, 1] |
| 2330 | result = [0] |
| 2331 | pm.eval("(result, arr) => {result[0] = arr.valueOf()}")(result, items) |
| 2332 | assert items == [1, 2, 1] |
| 2333 | assert result[0] is items |
| 2334 | |
| 2335 | # toLocaleString |
| 2336 |
nothing calls this directly
no outgoing calls
no test coverage detected