()
| 334 | |
| 335 | |
| 336 | def test_not_instanceof_string(): |
| 337 | items = {'a': 10} |
| 338 | result = [None] |
| 339 | pm.eval("(result, obj) => {result[0] = obj instanceof String}")(result, items) |
| 340 | assert not result[0] |
| 341 | |
| 342 | # valueOf |
| 343 |
nothing calls this directly
no outgoing calls
no test coverage detected