()
| 353 | |
| 354 | |
| 355 | def test_toString(): |
| 356 | items = {'a': 10} |
| 357 | result = [0] |
| 358 | pm.eval("(result, obj) => {result[0] = obj.toString()}")(result, items) |
| 359 | assert result[0] == '[object Object]' |
| 360 | |
| 361 | # toLocaleString |
| 362 |
nothing calls this directly
no outgoing calls
no test coverage detected