mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-20 10:47:35 -05:00
* Fix #2031 - Add pyscript.WebSocket to the mix * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Working on a test case anyone can run * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
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');
|
|
});
|