| 1234567891011121314151617181920212223242526 |
- import { ConnectionOptions } from 'typeorm';
- import { TestDbInitializer } from './test-db-initializer';
- export type InitializerRegistry = { [type in ConnectionOptions['type']]?: TestDbInitializer<any> };
- const initializerRegistry: InitializerRegistry = {};
- /**
- * @description
- * Registers a {@link TestDbInitializer} for the given database type. Should be called before invoking
- * {@link createTestEnvironment}.
- *
- * @docsCategory testing
- */
- export function registerInitializer(type: ConnectionOptions['type'], initializer: TestDbInitializer<any>) {
- initializerRegistry[type] = initializer;
- }
- export function getInitializerFor(type: ConnectionOptions['type']): TestDbInitializer<any> {
- const initializer = initializerRegistry[type];
- if (!initializer) {
- throw new Error(`No initializer has been registered for the database type "${type}"`);
- }
- return initializer;
- }
|