delta-sync
Version:
A lightweight framework for bi-directional database synchronization with automatic version tracking and conflict resolution.
28 lines (27 loc) • 684 B
TypeScript
export declare class SyncViewTester {
private view;
private testResults;
constructor();
private runTest;
runAllTests(): Promise<{
success: boolean;
results: Record<string, {
success: boolean;
message: string;
}>;
}>;
private testBasicCRUD;
private testBatchOperations;
private testStorePagination;
private testViewDiff;
private testSerialization;
private testStoreManagement;
private testClearOperation;
}
export declare function testSyncViewFunctionality(): Promise<{
success: boolean;
results: Record<string, {
success: boolean;
message: string;
}>;
}>;