mirror of
https://github.com/pyscript/pyscript.git
synced 2026-04-30 16:00:32 -04:00
[next] Add basic integrations tests (#1576)
* [next] WIP: Add basic integrations tests * fix typos in README.md * Update README.md to specify when files are _ files ignored --------- Co-authored-by: Fabio Pliger <fpliger@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
2555833831
commit
0c54036466
@@ -0,0 +1,18 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<script type="module">
|
||||
import { init } from '../utils.js';
|
||||
init('micropython');
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<script type="micropython" config="../fetch.toml">
|
||||
import js
|
||||
import a, b
|
||||
js.document.currentScript.target.textContent = a.x + ", " + b.x
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user