From 612226de8e2fe3068d981866242bacedfceb9734 Mon Sep 17 00:00:00 2001 From: Matt Mastracci Date: Mon, 22 May 2023 13:35:59 -0600 Subject: 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. --- test_util/src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'test_util/src/lib.rs') 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; -- cgit v1.2.3