()
| 352 | |
| 353 | |
| 354 | def test_indexOf_with_start(): |
| 355 | items = [1, 2, 3, 4, 3] |
| 356 | result = [None] |
| 357 | pm.eval("(result, arr) => {result[0] = arr.indexOf(3, 3)}")(result, items) |
| 358 | assert result[0] == 4 |
| 359 | |
| 360 | |
| 361 | def test_indexOf_with_negative_start(): |
nothing calls this directly
no outgoing calls
no test coverage detected