UNPKG

universal-speedtest

Version:
25 lines (24 loc) 997 B
// Server list export const DEFAULT_SERVER_LIST_SIZE = 100; export const SERVER_LATENCY_TEST_REQUESTS = 5; export const SERVER_LATENCY_TEST_TIMEOUT = 15; // Latency test export const LATENCY_TEST_REQUESTS = 10; export const LATENCY_TEST_TIMEOUT = 20; // Download test export const DOWNLOAD_TEST_MAX_CONNECTIONS = 24; export const DOWNLOAD_TEST_SIZE = 25_000_000; export const DOWNLOAD_TEST_INITIAL_CONNECTIONS = 4; export const DOWNLOAD_LATENCY_TEST_REQUESTS = -1; export const DOWNLOAD_LATENCY_TEST_TIMEOUT = 15; export const DOWNLOAD_TEST_DURATION = 15; export const DOWNLOAD_TEST_SCALING_RATIO = 750_000; // Upload test export const UPLOAD_TEST_MAX_CONNECTIONS = 6; export const UPLOAD_TEST_SIZE = 25_000_000; export const UPLOAD_STATS_LISTENER_TIMEOUT = 20; export const UPLOAD_TEST_INITIAL_CONNECTIONS = 4; export const UPLOAD_LATENCY_TEST_REQUESTS = -1; export const UPLOAD_LATENCY_TEST_TIMEOUT = 15; export const UPLOAD_TEST_DURATION = 15; export const UPLOAD_TEST_SCALING_RATIO = 750_000;