@@ -25,6 +25,9 @@ describe("GeoTiffMetadataReaderNode", () => {
2525 workflowId : "test-workflow" ,
2626 organizationId : "test-org" ,
2727 inputs : { } ,
28+ getIntegration : async ( ) => {
29+ throw new Error ( "No integrations in test" ) ;
30+ } ,
2831 env : { } as any ,
2932 } ) ;
3033
@@ -38,6 +41,9 @@ describe("GeoTiffMetadataReaderNode", () => {
3841 workflowId : "test-workflow" ,
3942 organizationId : "test-org" ,
4043 inputs : { url : 123 } ,
44+ getIntegration : async ( ) => {
45+ throw new Error ( "No integrations in test" ) ;
46+ } ,
4147 env : { } as any ,
4248 } ) ;
4349
@@ -51,6 +57,9 @@ describe("GeoTiffMetadataReaderNode", () => {
5157 workflowId : "test-workflow" ,
5258 organizationId : "test-org" ,
5359 inputs : { url : "not-a-valid-url" } ,
60+ getIntegration : async ( ) => {
61+ throw new Error ( "No integrations in test" ) ;
62+ } ,
5463 env : { } as any ,
5564 } ) ;
5665
@@ -67,6 +76,9 @@ describe("GeoTiffMetadataReaderNode", () => {
6776 workflowId : "test-workflow" ,
6877 organizationId : "test-org" ,
6978 inputs : { url : "https://example.com/test.tif" } ,
79+ getIntegration : async ( ) => {
80+ throw new Error ( "No integrations in test" ) ;
81+ } ,
7082 env : { } as any ,
7183 } ) ;
7284
@@ -102,6 +114,9 @@ describe("GeoTiffMetadataReaderNode", () => {
102114 workflowId : "test-workflow" ,
103115 organizationId : "test-org" ,
104116 inputs : { url : "https://example.com/test.tif" } ,
117+ getIntegration : async ( ) => {
118+ throw new Error ( "No integrations in test" ) ;
119+ } ,
105120 env : { } as any ,
106121 } ) ;
107122
0 commit comments