()
| 757 | |
| 758 | |
| 759 | def test_includes(): |
| 760 | items = [1, 2, 3] |
| 761 | result = [None] |
| 762 | pm.eval("(result, arr) => {result[0] = arr.includes(1)}")(result, items) |
| 763 | assert result[0] |
| 764 | |
| 765 | |
| 766 | def test_includes_start_index(): |
nothing calls this directly
no outgoing calls
no test coverage detected