Graphical PDS migrator for AT Protocol
1/**
2 * Test configuration and environment setup
3 */
4
5export const TEST_CONFIG = {
6 // Airport application URL
7 airportUrl: "http://localhost:8000",
8 handle: `migration-source.test`,
9 targetHandle: `migration-target.test`,
10 email: "testuser@example.com",
11 password: "testpassword",
12 timeout: 60_000,
13};