File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
debezium-platform-stage/src/__mocks__ Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import sourcesData from "./data/Sources.json";
55import destinationsData from "./data/Destinations.json" ;
66import sourceDetails_2 from "./data/SourceDetails_2.json" ;
77import destinationDetails_2 from "./data/DestinationDetails_2.json" ;
8+ import connectionsData from "./data/Connections.json" ;
89
910// Intercept API requests - using wildcard to match both relative and absolute URLs
1011export const handlers = [
@@ -49,7 +50,7 @@ export const handlers = [
4950 } ) ,
5051 //Connection
5152 http . get ( "*/api/connections" , ( ) => {
52- return HttpResponse . json ( destinationsData ) ;
53+ return HttpResponse . json ( connectionsData ) ;
5354 } ) ,
5455 http . get ( "*/api/connections/:connectionId/collections" , ( ) => {
5556 // Return empty collections data
You can’t perform that action at this time.
0 commit comments