mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-20 02:37:41 -05:00
Improve self.wait_for_console() (#1363)
- Previously, if the message appeared on the console immediately before the call to self.wait_for_console(), the call would hang forever until the timeout. Now, it returns immediately. - `wait_for_pyscript` now logs the time actually taken for waiting - `wait_for_pyscript` takes a `timeout` argument so that we can tweak it on a test-by-test basis
This commit is contained in:
@@ -102,7 +102,7 @@ class TestExamples(PyScriptTest):
|
||||
def test_bokeh(self):
|
||||
# XXX improve this test
|
||||
self.goto("examples/bokeh.html")
|
||||
self.wait_for_pyscript()
|
||||
self.wait_for_pyscript(timeout=90 * 1000)
|
||||
assert self.page.title() == "Bokeh Example"
|
||||
wait_for_render(self.page, "*", '<div.*?class="bk.*".*?>')
|
||||
self.assert_no_banners()
|
||||
@@ -111,7 +111,7 @@ class TestExamples(PyScriptTest):
|
||||
def test_bokeh_interactive(self):
|
||||
# XXX improve this test
|
||||
self.goto("examples/bokeh_interactive.html")
|
||||
self.wait_for_pyscript()
|
||||
self.wait_for_pyscript(timeout=90 * 1000)
|
||||
assert self.page.title() == "Bokeh Example"
|
||||
wait_for_render(self.page, "*", '<div.*?class=\\"bk\\".*?>')
|
||||
self.assert_no_banners()
|
||||
@@ -248,7 +248,7 @@ class TestExamples(PyScriptTest):
|
||||
|
||||
def test_panel(self):
|
||||
self.goto("examples/panel.html")
|
||||
self.wait_for_pyscript()
|
||||
self.wait_for_pyscript(timeout=90 * 1000)
|
||||
assert self.page.title() == "Panel Example"
|
||||
wait_for_render(self.page, "*", "<div.*?class=['\"]bk-root['\"].*?>")
|
||||
slider_title = self.page.wait_for_selector(".bk-slider-title")
|
||||
@@ -268,7 +268,7 @@ class TestExamples(PyScriptTest):
|
||||
def test_panel_deckgl(self):
|
||||
# XXX improve this test
|
||||
self.goto("examples/panel_deckgl.html")
|
||||
self.wait_for_pyscript()
|
||||
self.wait_for_pyscript(timeout=90 * 1000)
|
||||
assert self.page.title() == "PyScript/Panel DeckGL Demo"
|
||||
wait_for_render(self.page, "*", "<div.*?class=['\"]bk-root['\"].*?>")
|
||||
self.assert_no_banners()
|
||||
@@ -277,7 +277,7 @@ class TestExamples(PyScriptTest):
|
||||
def test_panel_kmeans(self):
|
||||
# XXX improve this test
|
||||
self.goto("examples/panel_kmeans.html")
|
||||
self.wait_for_pyscript()
|
||||
self.wait_for_pyscript(timeout=90 * 1000)
|
||||
assert self.page.title() == "Pyscript/Panel KMeans Demo"
|
||||
wait_for_render(self.page, "*", "<div.*?class=['\"]bk-root['\"].*?>")
|
||||
self.assert_no_banners()
|
||||
@@ -286,7 +286,7 @@ class TestExamples(PyScriptTest):
|
||||
def test_panel_stream(self):
|
||||
# XXX improve this test
|
||||
self.goto("examples/panel_stream.html")
|
||||
self.wait_for_pyscript()
|
||||
self.wait_for_pyscript(timeout=90 * 1000)
|
||||
assert self.page.title() == "PyScript/Panel Streaming Demo"
|
||||
wait_for_render(self.page, "*", "<div.*?class=['\"]bk-root['\"].*?>")
|
||||
self.assert_no_banners()
|
||||
|
||||
Reference in New Issue
Block a user