I'm trying to improve the following assertion:
cy.xpath('//div[@data-testid="column"]')
.should('have.css', 'background-image',
'url("https://assets.website.com/folder/house.jpg")'
);
In the test I am verifying if that div has the CSS background-image property with that url value.
I want to convert this assertion to verifying that the div has the css background-image property with a value that contains "house.jpg" instead of the entire URL.
You can also do it with a simple string
includecheck