mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 09:50:01 +00:00
## Summary Reorganizes the test directory structure for better clarity and maintainability: - **Rename `test/datahaven/` → `test/moonwall/`**: Clearly identifies these as Moonwall single-node tests - **Move `test/framework/` → `test/e2e/framework/`**: Groups e2e test utilities under a dedicated folder - **Move `test/suites/` → `test/e2e/suites/`**: Groups e2e test suites with the framework - **Add `test/e2e/framework/validators.ts`**: Extracts validator test helpers from utils into the e2e framework - **Update documentation**: README.md and E2E_FRAMEWORK_OVERVIEW.md reflect the new structure ### New Directory Structure ``` test/ ├── e2e/ │ ├── suites/ # E2E test suites (Kurtosis-based) │ └── framework/ # E2E test utilities & helpers ├── moonwall/ # Moonwall single-node tests ├── launcher/ # Network deployment tools └── ... ``` --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
19 lines
519 B
TypeScript
19 lines
519 B
TypeScript
/**
|
|
* DataHaven launcher utility constants for validator nodes
|
|
*
|
|
* Note: E2E test helper functions (addValidatorToAllowlist, registerOperator,
|
|
* launchDatahavenValidator, etc.) have been moved to test/e2e/framework/test-validators.ts
|
|
*/
|
|
|
|
export const COMMON_LAUNCH_ARGS = [
|
|
"--unsafe-force-node-key-generation",
|
|
"--tmp",
|
|
"--validator",
|
|
"--discover-local",
|
|
"--no-prometheus",
|
|
"--unsafe-rpc-external",
|
|
"--rpc-cors=all",
|
|
"--force-authoring",
|
|
"--no-telemetry",
|
|
"--enable-offchain-indexing=true"
|
|
];
|