10 lines
252 B
Python
10 lines
252 B
Python
"""Re-export dual-terminal helpers (fixtures live in tests/e2e/conftest.py)."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from tests.e2e.conftest import E2E_PERIOD_A, sync_both
|
|
|
|
DUAL_E2E_PERIOD_A = E2E_PERIOD_A
|
|
|
|
__all__ = ["DUAL_E2E_PERIOD_A", "sync_both"]
|