()
| 1884 | |
| 1885 | |
| 1886 | def test_find_check_array(): |
| 1887 | items = ['Four', 'Three', 'One'] |
| 1888 | result = [''] |
| 1889 | pm.eval("(result, arr) => {arr.find((element, index, array) => result[0] = array)}")(result, items) |
| 1890 | assert result == [items] |
| 1891 | assert result[0] is items |
| 1892 | |
| 1893 | |
| 1894 | def test_find_check_this_arg(): |
nothing calls this directly
no outgoing calls
no test coverage detected