vdev/testing/mod.rs
1use std::path::PathBuf;
2
3use crate::app;
4
5pub mod build;
6pub mod config;
7pub mod docker;
8pub mod integration;
9pub mod runner;
10
11/// Returns the path to the unified test runner Dockerfile.
12/// Both integration and E2E tests use the same Dockerfile at `tests/e2e/Dockerfile`.
13pub fn test_runner_dockerfile() -> PathBuf {
14 [app::path(), "tests", "e2e", "Dockerfile"].iter().collect()
15}