diff options
Diffstat (limited to 'packages/meshbay-hub/tests/test_hub_address_seam.py')
| -rw-r--r-- | packages/meshbay-hub/tests/test_hub_address_seam.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/meshbay-hub/tests/test_hub_address_seam.py b/packages/meshbay-hub/tests/test_hub_address_seam.py index ccdac7d..64dcdc9 100644 --- a/packages/meshbay-hub/tests/test_hub_address_seam.py +++ b/packages/meshbay-hub/tests/test_hub_address_seam.py @@ -18,6 +18,7 @@ import re from pathlib import Path import pytest +from spa_source import transport_source STATIC = Path(__file__).resolve().parents[1] / "src" / "meshbay_hub" / "static" @@ -28,6 +29,9 @@ CALLERS = ["app.js", "keyderive.js", "transport.js", "crypto.js", def _source(name: str) -> str: + # transport.js stands for every part of the transport (spa_source). + if name == "transport.js": + return transport_source() return (STATIC / name).read_text(encoding="utf-8") |