()
| 387 | |
| 388 | |
| 389 | def test_indexOf_small_start(): |
| 390 | items = [1, 2, 3, 1] |
| 391 | result = [None] |
| 392 | pm.eval("(result, arr) => {result[0] = arr.indexOf(1, -10)}")(result, items) |
| 393 | assert result[0] == 0 |
| 394 | |
| 395 | # lastIndexOf |
| 396 |
nothing calls this directly
no outgoing calls
no test coverage detected