summaryrefslogtreecommitdiff
path: root/test_util/src/lib.rs
diff options
context:
space:
mode:
authorMatt Mastracci <matthew@mastracci.com>2023-05-22 13:35:59 -0600
committerGitHub <noreply@github.com>2023-05-22 13:35:59 -0600
commit612226de8e2fe3068d981866242bacedfceb9734 (patch)
tree318d644be0770ce1bff9bf1ceff415c0b4705ec2 /test_util/src/lib.rs
parentffa020f43a2a0d04fade562b2f82cd1a39913780 (diff)
chore(cli): One Rust test per JS and Node unit test file (#19199)
This runs our `js_unit_tests` and `node_unit_tests` in parallel, one rust test per JS unit test file. Some of our JS tests don't like running in parallel due to port requirements, so this also makes those use a specific port-per-file. This does not attempt to make the node-compat tests work.
Diffstat (limited to 'test_util/src/lib.rs')
-rw-r--r--test_util/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/test_util/src/lib.rs b/test_util/src/lib.rs
index 96dc1c325..581abb2b1 100644
--- a/test_util/src/lib.rs
+++ b/test_util/src/lib.rs
@@ -55,6 +55,7 @@ use url::Url;
pub mod assertions;
mod builders;
+pub mod factory;
pub mod lsp;
mod npm;
pub mod pty;