mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
* Fix #2114 - Cleanup the test folder + automation * Merged both test and tests into a single folder
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');
|
|
});
|