Files
pyscript/pyscript.core/test/integration/wasmoon.js
Andrea Giammarchi 0c54036466 [next] Add basic integrations tests (#1576)
* [next] WIP: Add basic integrations tests

* fix typos in  README.md

* Update README.md to specify when files are _ files ignored

---------

Co-authored-by: Fabio Pliger <fpliger@users.noreply.github.com>
2023-07-19 10:18:17 +02:00

12 lines
304 B
JavaScript

'use strict';
const { shared } = require('./_shared.js');
module.exports = (playwright, baseURL) => {
const { test } = playwright;
test('Wasmoon bootstrap', shared.bootstrap(playwright, baseURL));
test('Wasmoon to Wasmoon Worker', shared.worker(playwright, `${baseURL}/worker.html`));
};