diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2023-03-28 13:40:43 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-28 13:40:43 -0400 |
commit | 35fd8583efce33eaec4d88a26d96a5efb1690911 (patch) | |
tree | d02ba55a6748ff8eb165fa7bed05860ed799d868 /cli/tests/integration/mod.rs | |
parent | e789f813f9eec188e270037648e7b94e05dc1787 (diff) |
refactor: move shared library tests to their own file (#18479)
Diffstat (limited to 'cli/tests/integration/mod.rs')
-rw-r--r-- | cli/tests/integration/mod.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/cli/tests/integration/mod.rs b/cli/tests/integration/mod.rs index 9a5f1a49f..39a694c26 100644 --- a/cli/tests/integration/mod.rs +++ b/cli/tests/integration/mod.rs @@ -123,12 +123,8 @@ mod install; mod js_unit_tests; #[path = "lint_tests.rs"] mod lint; -#[path = "linux_tests.rs"] -mod linux; #[path = "lsp_tests.rs"] mod lsp; -#[path = "macos_tests.rs"] -mod macos; #[path = "node_compat_tests.rs"] mod node_compat_tests; #[path = "node_unit_tests.rs"] @@ -139,6 +135,8 @@ mod npm; mod repl; #[path = "run_tests.rs"] mod run; +#[path = "shared_library_tests.rs"] +mod shared_library_tests; #[path = "task_tests.rs"] mod task; #[path = "test_tests.rs"] |