File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
indexer-agent/src/__tests__
indexer-cli/src/__tests__
indexer-common/src/__tests__ Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -139,6 +139,7 @@ const setup = async () => {
139
139
'http://test-admin-endpoint.xyz' ,
140
140
'https://test-query-endpoint.xyz' ,
141
141
'https://test-status-endpoint.xyz' ,
142
+ 'https://test-ipfs-endpoint.xyz' ,
142
143
)
143
144
144
145
const yamlObj = loadTestYamlConfig ( )
Original file line number Diff line number Diff line change @@ -87,6 +87,7 @@ export const setup = async (multiNetworksEnabled: boolean) => {
87
87
'http://test-admin-endpoint.xyz' ,
88
88
'https://test-query-endpoint.xyz' ,
89
89
statusEndpoint ,
90
+ 'https://test-ipfs-endpoint.xyz' ,
90
91
)
91
92
92
93
const network = await Network . create (
Original file line number Diff line number Diff line change @@ -96,20 +96,20 @@ describe(SubgraphManifestResolver, () => {
96
96
return res . send ( err . message )
97
97
}
98
98
99
- console . log ( `got cid ${ cid } ` )
99
+ // console.log(`got cid ${cid}`)
100
100
101
101
// Example: Respond with different data based on the CID
102
102
if ( manifestMap . has ( cid ) ) {
103
103
res . send ( manifestMap . get ( cid ) )
104
104
} else {
105
- console . log ( `CID not found: ${ cid } ` )
105
+ // console.log(`CID not found: ${cid}`)
106
106
res . status ( 404 ) . send ( 'Not Found' )
107
107
}
108
108
} )
109
109
110
110
// Handler for all other routes
111
111
app . use ( ( req : Request , res : Response , next ) => {
112
- console . log ( `404: ${ req . url } , ${ req . method } ` )
112
+ // console.log(`404: ${req.url}, ${req.method}`)
113
113
res . status ( 404 ) . send ( 'Not Found' )
114
114
next ( )
115
115
} )
You can’t perform that action at this time.
0 commit comments