Is there a way to test sightly code at runtime without a deployment?
I have some code like this in an html page:
<sly data-sly-test="${properties.showPinterestSave == 'true'}">
For some reason that I cannot tell, the code using this is not working on some pages on our published environments. I can look in crx and I see this value appears to be correct. I could add something to the page to display these values, but then I have to go through a pull request and code deployment. I need to move more quickly than that. Is there a way to test values like this at runtime?


