()
| 764 | |
| 765 | |
| 766 | def test_includes_start_index(): |
| 767 | items = [1, 2, 3] |
| 768 | result = [None] |
| 769 | pm.eval("(result, arr) => {result[0] = arr.includes(1, 1)}")(result, items) |
| 770 | assert not result[0] |
| 771 | |
| 772 | |
| 773 | def test_includes_start_index_negative(): |
nothing calls this directly
no outgoing calls
no test coverage detected