delta-sync
Version:
A lightweight framework for bi-directional database synchronization with automatic version tracking and conflict resolution.
29 lines (28 loc) • 728 B
TypeScript
export declare class CoordinatorTester {
private coordinator;
private memoryAdapter;
private testResults;
constructor();
private runTest;
runAllTests(): Promise<{
success: boolean;
results: Record<string, {
success: boolean;
message: string;
}>;
}>;
private testInitialization;
private testDataOperations;
private testQueryOperations;
private testChangeNotification;
private testConcurrency;
private testLargeDataset;
private testEdgeCases;
}
export declare function testCoordinatorFunctionality(): Promise<{
success: boolean;
results: Record<string, {
success: boolean;
message: string;
}>;
}>;