A persistent IndexedDB store for PyScript (#2101)

A persistent IndexedDB store for PyScript
This commit is contained in:
Andrea Giammarchi
2024-06-19 14:11:57 +02:00
committed by GitHub
parent aab015b9b8
commit d0406be84c
9 changed files with 489 additions and 167 deletions

View File

@@ -88,3 +88,8 @@ test('MicroPython + Pyodide ffi', async ({ page }) => {
await page.goto('http://localhost:8080/test/ffi.html');
await page.waitForSelector('html.mpy.py');
});
test('MicroPython + Storage', async ({ page }) => {
await page.goto('http://localhost:8080/test/storage.html');
await page.waitForSelector('html.ok');
});