MeiliSearch/meilisearch/tests/integration.rs
2024-05-28 15:28:19 +02:00

22 lines
478 B
Rust

mod auth;
mod common;
mod dashboard;
mod documents;
mod dumps;
mod features;
mod index;
mod logs;
mod search;
mod settings;
mod similar;
mod snapshot;
mod stats;
mod swap_indexes;
mod tasks;
// Tests are isolated by features in different modules to allow better readability, test
// targetability, and improved incremental compilation times.
//
// All the integration tests live in the same root module so only one test executable is generated,
// thus improving linking time.