mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-20 02:37:41 -05:00
7 lines
192 B
JavaScript
7 lines
192 B
JavaScript
import { test, expect } from '@playwright/test';
|
|
|
|
test('MicroPython WebSocket', async ({ page }) => {
|
|
await page.goto('http://localhost:5037/');
|
|
await page.waitForSelector('html.ok');
|
|
});
|