* Check that there are no scripts loading from pyscript.net/latest
()
| 10 | * Check that there are no scripts loading from pyscript.net/latest |
| 11 | */ |
| 12 | function checkDeprecations() { |
| 13 | const scripts = document.querySelectorAll("script"); |
| 14 | for (const script of scripts) checkLoadingScriptsFromLatest(script.src); |
| 15 | } |
| 16 | |
| 17 | /** |
| 18 | * Check if src being loaded from pyscript.net/latest and display a notification if true |
nothing calls this directly
no test coverage detected