()
| 799 | |
| 800 | |
| 801 | def test_includes_not(): |
| 802 | items = [1, 2, 3] |
| 803 | result = [None] |
| 804 | pm.eval("(result, arr) => {result[0] = arr.includes(5)}")(result, items) |
| 805 | assert not result[0] |
| 806 | |
| 807 | |
| 808 | def test_includes_not_other_type(): |
nothing calls this directly
no outgoing calls
no test coverage detected