diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-05-18 06:45:13 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-18 06:45:13 +1000 |
commit | 27e7bb090e9d771c8f3e4ddba4dd956a4a56855b (patch) | |
tree | 82cb99c1406fc94850bc3d5d66f8db40300860de /test_util/src/lib.rs | |
parent | aecdbba2c25d08d771a4e4fbeb62cac60015a3bd (diff) |
refactor: share test harness for lsp between bench and integration (#10659)
Diffstat (limited to 'test_util/src/lib.rs')
-rw-r--r-- | test_util/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test_util/src/lib.rs b/test_util/src/lib.rs index d2669e42e..4cfc5cc9c 100644 --- a/test_util/src/lib.rs +++ b/test_util/src/lib.rs @@ -46,6 +46,8 @@ use tokio_tungstenite::accept_async; #[cfg(unix)] pub use pty; +pub mod lsp; + const PORT: u16 = 4545; const TEST_AUTH_TOKEN: &str = "abcdef123456789"; const REDIRECT_PORT: u16 = 4546; |