Files
pyscript/pyscript.core/tests/manual/no-error.html
Andrea Giammarchi 9f46234f71 Fix #2114 - Cleanup the test folder + automation (#2143)
* Fix #2114 - Cleanup the test folder + automation
* Merged both test and tests into a single folder
2024-08-08 17:08:59 +02:00

24 lines
557 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PyScript Next No Plugin</title>
<link rel="stylesheet" href="../../dist/core.css">
<script type="module" src="../../dist/core.js"></script>
<py-config>plugins = ['!error']</py-config>
<script type="py">
print(1, 2, 3)
first()
</script>
<py-script>
print(4, 5, 6)
second()
</py-script>
<py-script src="whatever.py">
print(4, 5, 6)
second()
</py-script>
</head>
</html>