diff options
author | Andrew Nester <andrew.nester.dev@gmail.com> | 2023-03-28 11:00:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-28 09:00:19 +0000 |
commit | d0a0ff680eb02dddb7cea06fa0e26ecd08eab00a (patch) | |
tree | 6c58afa6974e44c903a716ca0b738cc6dc144693 /cli/tests/integration/mod.rs | |
parent | 795ecfa146c7b6c49be4b11f7064b2b5500296ff (diff) |
chore: add test for Linux shared libraries (#18461)
Closes #18266
Diffstat (limited to 'cli/tests/integration/mod.rs')
-rw-r--r-- | cli/tests/integration/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/tests/integration/mod.rs b/cli/tests/integration/mod.rs index 4b258d130..9a5f1a49f 100644 --- a/cli/tests/integration/mod.rs +++ b/cli/tests/integration/mod.rs @@ -123,6 +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"] |