Commit d58f6b1f authored by Michael Droettboom's avatar Michael Droettboom

Fix loadPackage in tests

parent 2067c1c3
......@@ -3,7 +3,6 @@ Various common utilities for testing.
"""
import pathlib
import time
try:
import pytest
......@@ -58,10 +57,9 @@ class SeleniumWrapper:
def load_package(self, packages):
self.run_js(
'window.done = false\n'
'pyodide.loadPackage({!r}).then(window.done = true)'.format(
packages))
time.sleep(2)
'window.done = false\n' +
'pyodide.loadPackage({!r})'.format(packages) +
'.then(function() { window.done = true; })')
self.wait.until(PackageLoaded())
@property
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment