-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyodide.js
More file actions
36 lines (26 loc) · 1.24 KB
/
pyodide.js
File metadata and controls
36 lines (26 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
'use strict';
import { shared, python } from './_shared.js';
export default (playwright, baseURL) => {
const { expect, test } = playwright;
test('Pyodide bootstrap', python.bootstrap(playwright, baseURL));
test('Pyodide fetch', python.fetch(playwright, `${baseURL}/fetch.html`));
test('Pyodide to Pyodide Worker', shared.worker(playwright, `${baseURL}/worker.html`));
test('Pyodide config as JSON', python.configAsJSON(playwright, baseURL));
test('Pyodide sync (time)', async ({ page }) => {
const logs = [];
page.on('console', msg => logs.push({text: msg.text(), time: new Date}));
await page.goto(`${baseURL}/sync.html`);
await page.waitForSelector('html.worker.ready');
await expect(logs.length).toBe(2);
const [
{text: text1, time: time1},
{text: text2, time: time2}
] = logs;
await expect(text1).toBe('before');
await expect(text2).toBe('after');
await expect((time2 - time1) >= 1000).toBe(true);
});
test('Pyodide Worker error', python.error(playwright, baseURL));
test('Pyodide transform', python.error(playwright, baseURL));
test('Pyodide events ready', python.disabledUntilReady(playwright, baseURL));
};