SRI Test
Here is the script tag we're trying to load:
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.4/jquery.min.js" integrity="sha256-thisIsWrong" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
The integrity attribute is intentionally wrong to cause an integrity check failure.
Check the console of your browser to see the error and also our own integrity check output.
The correct script tag to load would be:
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.4/jquery.min.js" integrity="sha256-oP6HI9z1XaZNBrJURtCoUT5SUnxFr8s3BzRl+cbzUq8=" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
We have also dispatched a mock report to demonstrate how reporting should work, check the Network tab.