mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-09-27 18:42:20 +02:00
12 lines
433 B
Python
12 lines
433 B
Python
"""Browser execution of production history and resume entry functions."""
|
|
import subprocess
|
|
from pathlib import Path
|
|
|
|
|
|
def test_history_resume_rendering_browser_suite():
|
|
result = subprocess.run(
|
|
["node", "--test", "tests/historyResumeRendering.test.mjs"],
|
|
cwd=Path(__file__).resolve().parents[1], capture_output=True, text=True, timeout=120,
|
|
)
|
|
assert result.returncode == 0, result.stdout + result.stderr
|