mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-19 18:27:29 -05:00
* [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>
10 lines
218 B
JavaScript
10 lines
218 B
JavaScript
'use strict';
|
|
|
|
const { shared } = require('./_shared.js');
|
|
|
|
module.exports = (playwright, baseURL) => {
|
|
const { test } = playwright;
|
|
|
|
test('Ruby WASM WASI bootstrap', shared.bootstrap(playwright, baseURL));
|
|
};
|