await t.expect(Selector('#elementId').innerText)
.eql('Discounted 20% with your subscription');
Here the text - Discounted 20% with your membership
20% is not constant, it may change to 15% or 19%
how can I "assert" this?
I have tried
await t.expect(Selector('#elementId').innerText)
.eql('Discounted' + 'with your subscription');
But doesn’t work