()
| 1869 | |
| 1870 | |
| 1871 | def test_find_not_found(): |
| 1872 | items = [5, 12, 8, 130, 44] |
| 1873 | result = [0] |
| 1874 | pm.eval("(result, arr) => {result[0] = arr.find((element) => element > 1000)}")(result, items) |
| 1875 | assert result[0] is None |
| 1876 | |
| 1877 | |
| 1878 | def test_find_check_index(): |
nothing calls this directly
no outgoing calls
no test coverage detected