Move RepositoryHolder into test helpers, as it's shared across shared tests

This commit is contained in:
2025-11-11 10:59:20 -08:00
parent 53e120cd1e
commit c43201b867
3 changed files with 11 additions and 16 deletions

View File

@@ -0,0 +1,5 @@
export interface RepositoryHolder<T> {
name: string;
factory(): Promise<T>;
teardown(): Promise<void>;
}