MeiliSearch/meilisearch/tests/integration.rs
2024-02-08 15:03:33 +01:00

21 lines
465 B
Rust

mod auth;
mod common;
mod dashboard;
mod documents;
mod dumps;
mod features;
mod index;
mod logs;
mod search;
mod settings;
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.