Something like the below generates the TSC error This expression is not callable. Type 'never' has no call signatures. in 5.6 while working in 5.5
const elems = await $$('div').filter(async el => await el.isDisplayed())
await expect(elems).toBeElementsArrayOfSize(1)
