()
| 336 | |
| 337 | |
| 338 | def test_slice_start_negative(): |
| 339 | items = [1, 2, 3] |
| 340 | result = [None] |
| 341 | pm.eval("(result, arr) => {result[0] = arr.slice(-3,-1)}")(result, items) |
| 342 | assert result[0] == [1, 2] |
| 343 | |
| 344 | # indexOf |
| 345 |
nothing calls this directly
no outgoing calls
no test coverage detected