@magda/connector-test-utils 1.1.0-arm64.0 → 1.1.0-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,21 @@
1
+
2
+ export declare abstract class MockExpressServer {
3
+ server: any;
4
+ run(port: number): Promise<unknown>;
5
+ abstract runImplementation(app: any): void;
6
+ }
7
+
8
+ export declare class MockRegistry extends MockExpressServer {
9
+ aspects: any;
10
+ records: any;
11
+ env: any;
12
+ runImplementation(registry: any): void;
13
+ }
14
+
15
+ /**
16
+ * Hoping to re-use this functionality for all black-box style connector
17
+ * testing.
18
+ */
19
+ export declare function runConnectorTest(TEST_CASES: any[], Catalog: any, options?: any): void;
20
+
21
+ export { }